how to view my table on mysql code example
Example 1: mysql show all tables
show tables;
Example 2: mysql show table structure
DESCRIBE table_name; # To show table structure...
Example 3: how to check tables in mysql
mysql -u user -p
show tables;
DESCRIBE table_name; # To show table structure...
mysql -u user -p