show table content mysql code example
Example 1: mysql show data from table
mysql> SELECT * FROM [table name];
Example 2: mysql show table structure
DESCRIBE table_name; # To show table structure...
Example 3: mysql show table fields
DESCRIBE my_table;
Example 4: show table mysql
# First, select your database
USE yourDb;
# Then, simply
SHOW TABLES;