表、视图、索引的创建、修改、删除操作等

系统 1758 0

一、表的创建

1、创建表

create if not exists  table student(StuID integer);

2、 创建带有缺省值的数据表:

create table if not exists  schoolTable(schID integer default 0, schName varchar default 'hz');

3、if not exists 使用

 如果已经存在表名、视图名和索引名,那么本次创建操作将失败。加上"IF NOT EXISTS"从句,那么本次创建操作将不会有任何影响.

create table if not exists studentTest(StuID integer);

4、primary key

create table if not exists  studenttable (stuid integer primary key asc); 创建主键

create table if not exists studenttable2 (stuid integer,stuName varchar, primary key(stuid,stuName)); 创建联合主键

4 unique约束

create table if not exists sutTest(stuID integer unique); 创建唯一性约束

5 check约束

create table if not exists sutTest2(stuID integer, ID integer, check(stuID > 0 and ID <0));

 

二、表的修改

1、修改表名

alter table sutTest rename to stutest;

2、向表中添加新列

alter table  stuTest add column stuName varchar;

 

三、表的删除

drop table if exists stuTest 如果某个表被删除了,那么与之相关的索引和触发器也会被随之删除。 

 

四、创建视图

1、创建简单视图

create view if not exists View_Corporate as select * from corporate where corid > 1

2、创建临时视图

create temp view tempView_Corporate as select * from corporate where corid > 1

 

五、删除视图

drop view if exists View_Corporate;

 

六、索引的创建

1、该索引基于corporate表的corID字段。

create index cor_index on corporate(corID);

2、该索引基于corporate表的corID,corname字段,,并且指定每个字段的排序规则

create index cor_index2 on corporate(corID asc, corName desc);

3、创建唯一索引

create unique index cor_index3 on corporate(corID asc, corName desc);

 

七、删除索引

drop index if exists cor_index3;

 

八、重建索引 reindex;

 重建索引用于删除已经存在的索引,同时基于其原有的规则重建该索引。

九、数据分析 analyze;

十、数据清理 vacuum;

表、视图、索引的创建、修改、删除操作等


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论