insert ... select with divide operator in select errors?

Posted by Mark on Stack Overflow See other posts from Stack Overflow or by Mark
Published on 2010-06-07T17:58:51Z Indexed on 2010/06/07 18:02 UTC
Read the original article Hit count: 155

Hi, the following query

CREATE TABLE IF NOT EXISTS XY (
 x INT NOT NULL ,
 y FLOAT NULL ,
PRIMARY KEY(x)
)

INSERT INTO XY (x,y)
(select 1 as x ,(1/7) as y);

errors with

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

any ideas?

© Stack Overflow or respective owner

Related posts about mysql

Related posts about select