开发者

1064 - You have an error in your SQL syntax [closed]

开发者 https://www.devze.com 2023-01-28 04:43 出处:网络
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time,or an extraordinarily narrow situation that is not generally applic
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 9 years ago.

do i have my date formated wrong?

1064 - 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 
'%M-%y').', '开发者_开发技巧.date('h:i:s a').', '3', '1', 'Title', 'Pr', 'BPM001')' at line 1
INSERT into names(com_id,rec_date,rec_time,rec_type,rec_request,rec_by,batch_id)
values('300','.date('%d-%M-%y').','.date('h:i:s a').','3', '1', 'Title', 'Pr', 'BPM001')


It seems that you are mixing php date formatting with mysql formatting. The valid way would be this one:

$sql = "
    INSERT INTO names
    (com_id,rec_date,rec_time,rec_type,rec_request,rec_by,batch_id) 
    values('300', DATE_FORMAT('%d-%M-%y'), '".date('h:i:s a')."', '3', '1', 'Title', 'Pr', 'BPM001')
";

The recommended way would be to stick to just one of them.

$sql = "
    INSERT INTO names
    (com_id,rec_date,rec_time,rec_type,rec_request,rec_by,batch_id) 
    values('300', DATE_FORMAT('%d-%M-%y'), DATE_FORMAT('%r'), '3', '1', 'Title', 'Pr', 'BPM001')
";

OR

$sql = "
    INSERT INTO names
    (com_id,rec_date,rec_time,rec_type,rec_request,rec_by,batch_id) 
    values('300', '".date('d-F-Y')."', '".date('h:i:s a')."', '3', '1', 'Title', 'Pr', 'BPM001')
";


You can try this.

$q= "INSERT into names(com_id,rec_date,rec_time,rec_type,rec_request,rec_by,batch_id) values('300', '".date("%d-%M-%y")."', '".date("h:i:s a")."', '3', '1', 'Title', 'Pr', 'BPM001')";


try this

$q= "INSERT into names(com_id,rec_date,rec_time,rec_type,rec_request,rec_by,batch_id) values('300', '".date('%d-%M-%y')."', '".date('h:i:s a')."', '3', '1', 'Title', 'Pr', 'BPM001')";
0

精彩评论

暂无评论...
验证码 换一张
取 消