sql - INSERT query not working -


what problem query???

insert query_tbl (winner) values ("yes") id = 5; 

if insert new record try this:

insert query_tbl (winner) values ("yes"); 

or update exiting record (i mean change value of record), then:

update query_tbl set winner='yes' id = 5; 

good luck!


Comments

Popular posts from this blog

service - Android MediaPlayer calls onCompletion before it already finished -

javascript - Training Neural Network to play flappy bird with genetic algorithm - Why can't it learn? -

javascript - Create a stacked percentage column -