From 09165a6054fe01adebc2335273ab3f8d9689e338 Mon Sep 17 00:00:00 2001 From: celsowm Date: Sun, 2 Jul 2023 10:35:29 -0300 Subject: [PATCH 1/2] Update query-builder.rst cast() on SQL Functions list --- en/orm/query-builder.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/en/orm/query-builder.rst b/en/orm/query-builder.rst index 28e3685229..440df99acc 100644 --- a/en/orm/query-builder.rst +++ b/en/orm/query-builder.rst @@ -317,7 +317,9 @@ You can access existing wrappers for several SQL functions through ``Query::func ``max()`` Calculate the max of a column. `Assumes arguments are literal values.` ``count()`` - Calculate the count. `Assumes arguments are literal values.` + Calculate the count. `Assumes arguments are literal values.`\ +``cast()`` + Convert a field or expression from one data type to another. ``concat()`` Concatenate two values together. `Assumes arguments are bound parameters.` ``coalesce()`` From 4e575562b697c883b0921270dc27d56f473d9a9a Mon Sep 17 00:00:00 2001 From: celsowm Date: Mon, 3 Jul 2023 15:54:35 -0300 Subject: [PATCH 2/2] Update query-builder.rst removing \ --- en/orm/query-builder.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/orm/query-builder.rst b/en/orm/query-builder.rst index 440df99acc..156ffda186 100644 --- a/en/orm/query-builder.rst +++ b/en/orm/query-builder.rst @@ -317,7 +317,7 @@ You can access existing wrappers for several SQL functions through ``Query::func ``max()`` Calculate the max of a column. `Assumes arguments are literal values.` ``count()`` - Calculate the count. `Assumes arguments are literal values.`\ + Calculate the count. `Assumes arguments are literal values.` ``cast()`` Convert a field or expression from one data type to another. ``concat()``