Wednesday, 27 February 2013

Basics of Mysql





























mysql> CREATE TABLE authors (id INT, name VARCHAR(20), email VARCHAR(20));

9. Insert to Table
mysql> INSERT INTO authors (id,name,email) VALUES(1,"Vivek","xuz@abc.com");

10. Update Table.
mysql> update authors set name="test" where id=1;

No comments:

Post a Comment