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
"INSERT INTO `news` (`published_on`, `title`, `body`, `summary`, `sort`) SELECT `2021-09-29 20:07:56` AS `published_on`, `Title` AS `title`, `test` AS `body`, `test` AS `summary`, IFNULL(MAX(sort), 0) + 1 AS `sort` FROM `news`"
Current behavior
current sql is
"INSERT INTO `news` (`published_on`, `title`, `body`, `summary`, `sort`) SELECT `2021-09-29` `20:07:56` AS `published_on`, `Title` AS `title`, `test` AS `body`, `test` AS `summary`, IFNULL(MAX(sort), 0) + 1 AS `sort` FROM `news`"
Bug Report
Summary
I want do
"INSERT INTO `news` (`published_on`, `title`, `body`, `summary`, `sort`) SELECT `2021-09-29 20:07:56` AS `published_on`, `Title` AS `title`, `test` AS `body`, `test` AS `summary`, IFNULL(MAX(sort), 0) + 1 AS `sort` FROM `news`"
Current behavior
current sql is
"INSERT INTO `news` (`published_on`, `title`, `body`, `summary`, `sort`) SELECT `2021-09-29` `20:07:56` AS `published_on`, `Title` AS `title`, `test` AS `body`, `test` AS `summary`, IFNULL(MAX(sort), 0) + 1 AS `sort` FROM `news`"
How to reproduce
Expected behavior
use
not
I found some related issues: #84 and #146
The text was updated successfully, but these errors were encountered: