1.数据库表操作:
- - 首先启动mysql服务器,在安装mysql的目录下打开cmd窗口,运行mysql:‘mysql.exe -hlocalhost -p3306 -uroot -p123456‘;
- - 查看所有的数据库: show databases; -- create database my_database;
- - use my_database; --> show tables; --> create table class(name varchar(10), room varchar(10))charset utf8; --> show tables like "%s"; -->
- 查询表的创建语句:show create table my_student; --> 省略冒号的写法:show create table my_student\g --> 另外一种输出格式:
- show create table my_student\G
- - 给表重命名:rename table student to my_student;
- - 查看数据表的表结构:desc 表名; -->describe 表名; --> show columns from 表名;
- - 给表添加新的字段:alter table my_student add column id int first/after;
- - 修改字段:修改通常是属性或者数据类型;--> alter table 表名 mondify 字段名 数据类型 [属性] [位置]; --> alter table my_student modify number char(10) after id;
- - 重命名字段:alter table 表名 change 旧字段 新字段 数据类型 [属性] [位置];
- alter table my_student change gender sex varchar(10) after id;
- - 删除字段:删除学生表中的年龄字段(age) --> alter table my_student drop age;
- - 删除数据表:drop table 1,2,3... --> drop table class;
时间: 2024-10-17 07:12:19