摘要: 0、distinct用法 在oracle中distinct的使用主要是在查询中去除重复出现的数据 直接在字段前加distinct关键字即可,如:select distinct 名字 from table distinct关键字也可以同时为多个字段进行去重, 如:select distinct 名字, 阅读全文
posted @ 2020-03-31 18:06 马踏飞燕Beautiful 阅读(9674) 评论(0) 推荐(1) 编辑
摘要: 0、exists() 用法: select * from T1 where exists(select 1 from T2 where T1.a=T2.a) 其中 “select 1 from T2 where T1.a=T2.a” 相当于一个关联表查询, 相当于“select 1 from T1, 阅读全文
posted @ 2020-03-31 17:57 马踏飞燕Beautiful 阅读(3701) 评论(0) 推荐(0) 编辑
摘要: 0、例如:select * from T1,T2 where T1.a=T2.a 1、连表查询 <=> join(inner join)内连接查询 数据源: Persion表: Orders表: //使用连表查询SELECT Persons.LastName, Persons.FirstName, 阅读全文
posted @ 2020-03-31 16:45 马踏飞燕Beautiful 阅读(2804) 评论(0) 推荐(0) 编辑
摘要: #查看表 select * from `竟企区域数据分析` #在表第一列新增名为“年月”的列alter table `竟企区域数据分析` add column 年月 varchar(20) not null first alter table LEAP.工作单回写表 add (填写人 varchar 阅读全文
posted @ 2020-03-31 13:28 马踏飞燕Beautiful 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 0、数值是常规的数值: [蓝色]"↑"0;[红色]"↓"0;[黄色]"→"0 [蓝色]"↑"0.0;[红色]"↓"0.0;[黄色]"→"0.0 1、数值是百分比的数值: [蓝色]"↑"0.00%;[红色]"↓"0.00%;[黄色]"→"0.00% #大于0.00%(百分比数值是保留小数点后2位的数值 阅读全文
posted @ 2020-03-31 09:53 马踏飞燕Beautiful 阅读(8347) 评论(0) 推荐(0) 编辑