Informix数据库sql常用语句

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 ;

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

冰河洗剑

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值