sql语句的简单用法 db2删除修改字段名,db2一次增加多个字段

sql语句的简单用法 db2删除修改字段名,db2一次增加多个字段

db2不能直接修改字段名,要先drop删除字段名再add新的,如下:

alter table TM_APP_FINAL_AUDIT_QUOTA  drop column  graduallyApprovalLevel
alter table TM_APP_FINAL_AUDIT_QUOTA  add column  gradually_Approval_Level varchar(12);

db2 增加多个字段

alter table TM_APP_CREDIT_INFO add column IS_FIT_PBOC_MARRIAGE varchar(1) add column IS_FIT_COM_MOBILE varchar(1) add column IS_FIT_HOME_ADDRESS_MOBILE varchar(1) add column IS_FIT_EDUCATIONAL varchar(1)

感觉麻烦就没有将表建进来,需要有基础的朋友替换相应的表和字段,谢谢

–mysql分页查询  5是查询在数据存储第5条数据20是从第五条开始的20条数据,因此显示的是6至26之间的数据

select * from tm_acl_dict where 1=1 limit 5,20    

–修改字段长度

 alter table tm_zm_score modify column CREDIT_UP_DATE varchar(32);

–移动表数据,从s2移动到tm_zm_watch_list_detail表,前提是两表的字段一致

insert into tm_zm_watch_list_detail 
    select * from s2 ;

–统计两张表的数据个数

select * from (select count(*) as c from tm_zm_watch_list_detail) as t0,
        (select count(*) from s2) as s0;

–删除表

drop table s2;  

–先去重一张表再右连接一张表,最后排序输出

select * from (
select distinct id_no from tm_zm_watch_list_detail) t0
right join cust on t0.id_no = cust.id_no
order by t0.id_no;

–先去重再计数

select count(distinct id_no) from cust;

//查询日期等于某天的

select * from tm_cis_req_prd_his t 

where t.req_date = ‘20170522’

select * from tm_zm_score t 

where t.zm_score=’666′

//大于芝麻分666的

select zm_score as score from tm_zm_score

where zm_score>666

//求和

select sum(zm_score) as score from tm_zm_score

//求平均值

select avg(zm_score) as score from tm_zm_score

//求最大值

select max(zm_score+0) as score from tm_zm_score

//求最小值

select min(zm_score+0)as score from tm_zm_score

//求数据条数

select count(zm_score) from tm_zm_score

//数字字符串排序

select * from tm_zm_score order by zm_score+0 desc

//between and用法

select * from tm_zm_score where zm_score between 6 and 66 order by zm_score+0 

//in 用法

select * from tm_zm_score where zm_score in (66)

//查询某个时间段所有大于0的数据并按芝麻分降序排列

select * from tm_zm_score where zm_score>0 and create_date between ‘2017-04-30 00:00:00’ and ‘2017-05-24 00:00:00’ order by zm_score desc

//增加一列

alter table tm_zm_score add bb varchar(11)

//删除一列

alter table tm_zm_score drop aa

//模糊查询

select * from tm_zm_score where zm_score like ‘%6%’ 

//插入数据

insert into  tm_zm_score(cust_id,org) value(’01’,’01’);

//删除数据

delete from tm_zm_score where cust_id=’02’

//更新数据

update  tm_zm_score set cust_id=’02’ where cust_id=’01’

//左连接表查询

select * from tm_zm_watch_list left join tm_zm_watch_list_detail on tm_zm_watch_list.cust_id=tm_zm_watch_list_detail.cust_id

//右连接查询

select * from tm_zm_watch_list right join tm_zm_watch_list_detail on tm_zm_watch_list.cust_id=tm_zm_watch_list_detail.cust_id

//内连接

select * from tm_zm_watch_list inner join tm_zm_watch_list_detail on tm_zm_watch_list.cust_id=tm_zm_watch_list_detail.cust_id

//索引创建

create   index q on tm_acl_dict(id)

//删除索引

drop index q on tm_acl_dict

select * from tm_acl_dict where id=1000

select zm_score as score from tm_zm_score where zm_score=66

//group by 分组查询

select type_name,count(type_name)  from tm_acl_dict group by type_name

select count(type_name) from tm_acl_dict t where t.type_name=’省’

select count(type_name) from tm_acl_dict where type_name=’省’

//case 用法

select type_name as ‘地区’,

        case type when ‘state’

                        then code else 0 end as’code’

                                from tm_acl_dict

//改变主键前要先删掉原先的主键

alter table tm_td_post_loan_monitoring_data_person_info drop PRIMARY KEY

alter table tm_td_post_loan_monitoring_data_person_info add primary key(id_number)

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/106366.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • Echarts折线图案例

    Echarts折线图案例问题:重置echarts折线图时,总会出现多个数据的拐点,与实际渲染的数据拐点不符合。解决:在实例化echarts后clear上一次的图。myEcharts.clear()案例constoption={//触摸echarts图的提示内容tooltip:{//是否显示提示框show:true,//触发类型://’item’:主要在散点图,饼图等无类目轴的图表中使用

  • nessus安装使用教程_kali linux全部功能教程

    nessus安装使用教程_kali linux全部功能教程一、Nessus介绍Nessus是目前全世界最多人使用的系统漏洞扫描与分析软件。总共有超过75,000个机构使用Nessus作为扫描该机构电脑系统的软件。提供完整的电脑漏洞扫描服务,并随时更新其漏洞数据库。Nessus专业版非免费的;家庭版是免费的,但单次任务只可以扫16个IP,这里注册的是家庭版,注册成功后会给邮箱发送一个激活码。二、安装下载家庭版https://www…

    2022年10月18日
  • ASP.NET_正则表达式_匹配HTML中的一行或多行

    ASP.NET_正则表达式_匹配HTML中的一行或多行

    2021年11月16日
  • 最长上升子序列 (LIS) 详解+例题模板 (全)

    最长上升子序列 (LIS) 详解+例题模板 (全)欢迎访问https://blog.csdn.net/lxt_Lucia~~宇宙第一小仙女\(^o^)/~~萌量爆表求带飞=≡Σ(((つ^o^)つ~dalao们点个关注呗~~————————————我只是一条可爱哒分界线————————————–1.摘要:关…

  • 用户态与内核态之间切换详解[通俗易懂]

    用户态与内核态之间切换详解[通俗易懂]用户态切换到内核态CPU中有一个标志字段,标志着线程的运行状态。用户态和内核态对应着不同的值,用户态为3,内核态为0.每个线程都对应着一个用户栈和内核栈,分别用来执行用户方法和内核方法。用户方法就是普通的操作。内核方法就是访问磁盘、内存分配、网卡、声卡等敏感操作。当用户尝试调用内核方法的时候,就会发生用户态切换到内核态的转变。切换流程:1、每个线程都对应这一个TCB,TCB中有一个TSS字段,存储着线程对应的内核栈的地址,也就是内核栈的栈顶指针。2、因为从用户态切换到内核态时,需要将用户态.

  • JSONObject 对象转化为Map「建议收藏」

    JSONObject 对象转化为Map「建议收藏」阿里的JSONObject对象转化为Map对象//json对象转为mappublicMap<String,Object>JsonToMap(JSONObjectjson){System.out.println(“********************转Map对象******************”+json);Map<String,Object>data=newHashMap<>();

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号