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

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -