Mysql:将now()值插入列显示错误

时间:2016-02-08 11:52:40

标签: mysql

我正在尝试将now()值插入到列中,但它显示错误

insert into tbl_offerpriceuser('urgentdate') values(NOW()) where user_id='717'

显示3个错误

在分析过程中发现了3个错误。

A comma or a closing bracket was expected (near "(" at position 55)
Unexpected token. (near ")" at position 56)
Unexpected token. (near ")" at position 57)

3 个答案:

答案 0 :(得分:3)

插入语法错误:

insert into tbl_offerpriceuser(urgentdate) values(NOW())

NOW()功能没有任何问题。并且没有WHERE条件

请参阅Syntax to Insert data

答案 1 :(得分:1)

插入语句中没有where子句

insert into tbl_offerpriceuser('urgentdate') values(NOW());

答案 2 :(得分:-2)

这是正确的语法:

INSERT INTO tbl_offerpriceuser(`urgentdate`) values(NOW()) WHERE `user_id`='717'