mysql 命令创建表格
2022/8/22 2:23:56
本文主要是介绍mysql 命令创建表格,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
显示mysql相关显示命令:
show databases; #显示数据库创建的数据库名 use [database name] #后 show tables;查看table 数据信息 describe [table name] #显示表格信息 show create table [table name] #显示创建的详细信息 select *from [table name] #查表
命令创建mysql table `student`:
create table `student`( `id` int(4) not null auto_increment comment '学号', `name` varchar(4) not null default '匿名' comment '姓名', `sex` varchar(1) not null default '男' comment '性别', primary key(`id`) )engine=innodb default charset=utf8;
这篇关于mysql 命令创建表格的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-20部署MySQL集群入门:一步一步搭建你的数据库集群
- 2024-11-19部署MySQL集群学习:入门教程
- 2024-11-19如何部署MySQL集群:新手入门教程
- 2024-11-19Mysql安装教程:新手必看的详细安装指南
- 2024-11-18Mysql安装入门:新手必读指南
- 2024-11-18MySQL事务MVCC原理入门详解
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-15MySQL教程:初学者必备的MySQL数据库入门指南
- 2024-11-15MySQL教程:初学者必看的MySQL入门指南