-
For example I want to do WHERE STR_TO_DATE(`ExpiryDate`) >= NOW()
I understand I can do something like "#ExpiryDate[>=]" => 'NOW()', but I don't know where to put the STR_TO_DATE part on the column
-
Hi guys,
I have a question, Can i use ORM fuel without framework ? if it's possible how can i install it ?
Thanks!
-
Hi
Is there any way to perform data conversion etc. in the SELECT caluse, like in WHERE?
For example:
```
SELECT NVARCHAR(uuid) AS uuid
FROM table
```
In my mind it could work almost as when doing…
-
for example
select \* from table where month(column) = 1;
and
select sysdate() from dual
thanks
-
Right now we can join on multiple tables writing this **'join'** array:
``` php
[ ...,
'[>]table_3' => ['table_2.ID' => 'ID',
'table_1.ID' => 'ID']]
```
That generates something …
-
I have a data with 30000 records, when I make a count using $ database-> count the result is always 9551.
the SQL of log_query in to use phpmyadmin or $database->query(), the counts 30000.
-
See the following error message when connecting users :
```
PHP Fatal error: Uncaught exception 'Exception' with message 'SQLSTATE[HY000] [1203]
User DB_USER already has more than 'max_user_c…
-
Hi,
First of all, thank you so much for creating this useful library..I've been using it a lot lately - But I've noticed the documentation is not so clear. For Instance, I wanted to run an update que…
ghost updated
6 years ago
-
Something like [+] or [-], and other things, would be nice in the where condition.
In some events I need to do this, but didn't find anything in the documentary.
Some example:
$dbmedoo->delete('cookie…
-
It would be really great to be able to do a NULL coalesce on a get/select call. Is this a planned feature? Really, allow functions in select clauses would be great.
e.g.
SELECT COALESCE(NULLIF(na…