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
何か案は?