Friday, April 24, 2009

mysql commands (2)

This is perhaps the most useful command in mysql that I have come across till now.

describe table_name;
This command will describe the contents of the table. Then it is very easy to insert the contents into the table.
insert into table_name ( var1,var2,var3) values (val1,val2,val3);
Next post after my current experiment :)

No comments: