数据定义语言(DDL)

第一部分------------------>>>>>DDL(数据定义语言) Data Definition Language

【数据库】    ------>create、show、alter、drop
【数据表结构】 ------>create、show、alter、drop、describe
一、创建数据库 create database `com.xcu.edu`;  删除数据库 drop database db_name;

二、创建表  
create table `com.xcu.edu`.`students`(
sno varchar(10),
time date
);
                         修改表名  rename table student to teacher;

三、修改表定义  alter table tb_name [add|drop|modify|change ……];
1、增加一个列
alter table student add height real;
2、删除一个列
alter table student drop time;
3、修改一个列的定义
alter table student modify sno varchar(30);
4、重命名一个列
alter table student change height weight double;

四、删除表
drop table tb_name;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值