This doesn\'t work:
INSERT INTO users (username, password) VALUES (\"Jack\",\"123\") WHERE id=\'1\';
Any ideas how to narrow insertion to a
UPDATE users SET username='&username', password='&password' where id='&id'
This query will ask you to enter the username,password and id dynamically