bitsCN.com
mysql查表语句
[sql]
describe table_name;
这个命令用来显示一个表格的结构
+----------+-----------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+-----------+------+-----+---------+-------+
| ID | int(11) | NO | PRI | NULL | |
| userName | char(20) | NO | | NULL | |
| password | char(20) | NO | | NULL | |
| niName | char(20) | NO | | NULL | |
| sex | char(10) | NO | | NULL | |
| phone | char(20) | YES | | NULL | |
| address | char(100) | YES | | NULL | |
+----------+-----------+------+-----+---------+-------+
和这个命令可以实现同样效果的是:
show columns from table_name;
show create table table_name;//显示某个表格被创建时所用的SQL语句
create table user | CREATE TABLE `user` (
`ID` int(11) NOT NULL,
`userName` char(20) NOT NULL,
`password` char(20) NOT NULL,
`niName` char(20) NOT NULL,
`sex` char(10) NOT NULL,
`phone` char(20) DEFAULT NULL,
`address` char(100) DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
bitsCN.com每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号