1、删除表字段
alter table 表名 drop (字段名,字段名...);//逗号隔开可以同时删除多个字段
2、新增表字段
alter table 表名 add 字段名称 字段类型 before 字段名;
3、查询表主键名称
select constrname from sysconstraints where constrtype='P' and tabid=(select tabid from systables where tabname='表名称');
4、删除表主键名称
alter table 表名 drop constraint 主键名;
5、新增表主键名称
alter table 表名称 add constraint primary key(字段1,字段2,字段3....) constraint 主键名称;
6、复制内容
insert into data_user (comcode, appcode, appcomname, comlevel, usercode, username, mobile)
select distinct comcode, appcode, appcomname, comlevel, usercode, username, mobile from temp_user where mobile is not null ;
7、创建临时表
select * from data_user into temp temp_1 with no log;
8、sql中四舍五入保留2位有效小数
cast(字段名称/10000 as decimal(14,2))
数字转字符:to_char(cast(字段名称/10000 as decimal(14,2)))
9、大表创建索引
CREATE INDEX idx_user on user (username,usercode) online;
10.修改表名称
RENAME table data_user to data_user_new
11.修改表字段名称
RENAME COLUMN data_fwinfo.mobile TO username
12、更新表字段
alter table salesgrade modify newstatcode varchar(30);
13、授权数据库
grant select on salesgrade to ccpqry
14、创建外键约束
ALTER TABLE nx_carorprp2 ADD CONSTRAINT FOREIGN KEY (userunique)
REFERENCES nx_staff (userunique) CONSTRAINT fk_nx_carorprp2 ON DELETE CASCADE ;