show databases;
The above code lists databases in mysql.
show tables;
The above code lists tables in mysql.
Now, I like to see the list of feilds in a table.
How can I do it?
Joon
desc table
.