[导入]SQL语句CREATE,DROP


1、说明:创建数据库
[code]CREATE DATABASE database-name [/code]
2、说明:删除数据库
[code]drop database dbname[/code]
4、说明:创建新表
[code]create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)[/code]根据已有的表创建新表:
A:[code]create table tab_new like tab_old (使用旧表创建新表)[/code]
B:[code]create table tab_new as select col1,col2… from tab_old definition only[/code]
5、说明:删除新表
[code]drop table tabname [/code]
6、说明:增加一个列
[code]Alter table tabname add column col type[/code]注:列增加后将不能删除。DB2中列加上后数据类型也不能改变,唯一能改变的是增加varchar类型的长度
文章来源:http://localhost/blog/read.php?6
posted @ 2007-06-13 00:32  zeus2  Views(648)  Comments(0Edit  收藏  举报