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
with health_info as (
select
*
from table_name
)
select
table_name.*
from table_name
INNER join health_info on table_name.id = health_info.id
失败: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 13
必须加上";" 执行才不会报错
The text was updated successfully, but these errors were encountered:
Chat2DB Version
chat2DB Pro 2.14.5
Describe the bug
with health_info as (
select
*
from table_name
)
select
table_name.*
from table_name
INNER join health_info on table_name.id = health_info.id
失败: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 13
必须加上";" 执行才不会报错
The text was updated successfully, but these errors were encountered: