Today I learned how to get information about databases and tables in mysql.
show databases;
use <database-name>
show tables;
describe <table-name>;
Today I learned how to get information about databases and tables in mysql.
show databases;
use <database-name>
show tables;
describe <table-name>;