如果不存在 XY ( x INT NOT NULL , y FLOAT NULL , PRIMARY KEY(x) ),则创建表
INSERT INTO XY (x,y)
(select 1 as x ,(1/7) as y);
错误与
Error code 1064, SQL state 42000: 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 'INSERT INTO XY (x,y)
(select 1 as x ,(1/7) as y)' at line 7
Line 1, column 1
有任何想法吗?