Answers for "mysql show tables"

SQL
15

mysql show all tables

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

how to use a database to see tables mysql

use database_name;
show tables;
describe table_name;
Posted by: Guest on September-07-2021
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 create table

Copied mysql> SHOW CREATE TABLE tG
*************************** 1. row ***************************
       Table: t
Create Table: CREATE TABLE `t` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `s` char(60) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
Posted by: Guest on July-16-2020
1

show table info mysql

Copied mysql> DESCRIBE pet;
+---------+-------------+------+-----+---------+-------+
| Field   | Type        | Null | Key | Default | Extra |
+---------+-------------+------+-----+---------+-------+
| name    | varchar(20) | YES  |     | NULL    |       |
| owner   | varchar(20) | YES  |     | NULL    |       |
| species | varchar(20) | YES  |     | NULL    |       |
| sex     | char(1)     | YES  |     | NULL    |       |
| birth   | date        | YES  |     | NULL    |       |
| death   | date        | YES  |     | NULL    |       |
+---------+-------------+------+-----+---------+-------+
Posted by: Guest on January-10-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language