Answers for "mysql show table contents"

SQL
1

mysql show table column full description

/**table's full description*/
SHOW FULL COLUMNS FROM tablename;
Posted by: Guest on October-19-2021
15

mysql show tables in database

show tables;
Posted by: Guest on March-19-2020
1

mysql show data from table

mysql> SELECT * FROM [table name];
Posted by: Guest on September-29-2020
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 show table fields

DESCRIBE my_table;
Posted by: Guest on October-25-2020

Code answers related to "mysql show table contents"

Code answers related to "SQL"

Browse Popular Code Answers by Language