数据库的创建、修改和删除;数据库表的创建、修改和删除;
程序员文章站
2022-05-30 16:40:03
...
1.数据库的创建
create database 数据库名
2.数据库的修改
alter database 数据库名 modify name=数据库新名
3.数据库的删除
drop database 数据库名
4.数据库表的创建
create table 表名
(列名 类型 not null,
列名 类型 not null
)
例:
create table book2
(bno char(4) primary key,
sname char(20) not null
)
5.数据库表的修改
alter table 表名 add 列名 类型 #增加一列
alter table 表名 drop column 列名 #删除一列
alter table 表名 alter column 列名 bigint not null #修改某列类型
alter table 表名 add primary key(列名) #添加主键
6.数据库表的删除
drop table 表名