Answers for "view a table in mysql"

SQL
1

print all records of table in mysql

SELECT * FROM TABLE_NAME;
OR
SELECT column_name_1, column_name_2 FROM TABLE_NAME;
Posted by: Guest on May-12-2020
4

mysql show table structure

DESCRIBE table_name; # To show table structure...
Posted by: Guest on May-04-2020
2

mysql command show tables

SHOW TABLES;
Posted by: Guest on September-09-2020
0

mysql show table info

-- Select all:

SELECT * FROM Customers;
Posted by: Guest on July-30-2021
-1

show tables mysql

Press CTRL+C to copy SHOW [EXTENDED] [FULL] TABLES
    [{FROM | IN} db_name]
    [LIKE 'pattern' | WHERE expr]
Posted by: Guest on October-23-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language