You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched for a similar issue in our bug tracker and didn't find any solutions.
Database
MySQL
What happened?
I have the query columns a bug happened!
$result = $database
->select([
'table1.id as t.id'
])
->from('table1')
->fetchAll();
I need this result
select `table1`.`id` as `t.id` from `table1`;
The actual result is
select `table1`.`id` as `t`.`id` from `table1`;
Result in query error:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use
Version
database 2.0
PHP 8.1
The text was updated successfully, but these errors were encountered:
No duplicates 🥲.
Database
MySQL
What happened?
I have the query columns a bug happened!
I need this result
The actual result is
Result in query error:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use
Version
The text was updated successfully, but these errors were encountered: