Collections:
Show All Tables in a Database in MySQL
How To Get a List of All Tables in a Database in MySQL?
✍: FYIcenter.com
If you want to see the table you have just created, you can use the "SHOW TABLES" command to get a list of all tables in database. The tutorial script gives you a good example:
mysql> SHOW TABLES; +---------------+ | Tables_in_fyi | +---------------+ | links | | tip | +---------------+ 3 rows in set (0.00 sec)
⇒ Show All Columns of an Existing Table in MySQL
⇐ CREATE Command Denied Error in MySQL
2018-03-10, 2554🔥, 0💬
Popular Posts:
How To Convert Characters to Numbers in Oracle? You can convert characters to numbers by using the T...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
How To Download Oracle Database 10g XE in Oracle? If you want to download a copy of Oracle Database ...
How To Set Up SQL*Plus Output Format in Oracle? If you want to practice SQL statements with SQL*Plus...
How To Create a Stored Program Unit in Oracle? If you want to create a stored program unit, you can ...