Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/lsp4you/public_html/connect.php on line 2
DESCRIBE <Table Name>;
or
DESC <Table Name>;
mysql> describe department; +-----------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------+-------------+------+-----+---------+-------+ | dept_id | varchar(3) | NO | PRI | NULL | | | dept_name | varchar(30) | NO | | NULL | | | location | varchar(30) | YES | | NULL | | +-----------+-------------+------+-----+---------+-------+ 3 rows in set (0.01 sec) mysql>