--1.查看表空间的名称及大小SELECT t.tablespace_name,round(SUM(bytes/(1024*1024)),0) as ts_size FROM dba_tablespaces t ,dba_data_files dWHERE t.tablespace_name = d ...
分类:
数据库 时间:
2020-09-17 23:34:55
阅读次数:
46
幻读指的是一个事物在两次查询同一范围的时候,后一次查询看到了前一次查询没有看到的行。 在可重复读隔离级别下,普通的查询时快照读,是不会看到别的事务插入的数据的。 因此,幻读在当前读下才会出现。 幻读仅专指新插入的行。 select 加了for update,这就是当前读。当前读的规则就是要能读到所有 ...
分类:
数据库 时间:
2020-09-17 23:33:43
阅读次数:
35
查询语句语法: [WITH CommonTableExpression (, CommonTableExpression)*] (Note: Only available starting with Hive 0.13.0)SELECT [ALL | DISTINCT] select_expr, s ...
分类:
其他好文 时间:
2020-09-17 23:30:31
阅读次数:
35
分页查询 语法: select 查询列表 from 表 join type join 表 on 连接条件 where 筛选条件 group by 分组字段 having 分组后的筛选 order by 排序的字段 limit offset,size offset 要显示的起始索引(从0开始) siz ...
分类:
数据库 时间:
2020-09-17 23:25:50
阅读次数:
38
select GLOBAL_STATS from user_indexes where index_name=index_name;LOBAL_STATS:>对于分区表,指示是否收集了统计信息>是针对整个表(YES)还是从统计信息中估计的>基础分区和子分区(NO) 分区表里global_stats= ...
分类:
数据库 时间:
2020-09-17 23:24:54
阅读次数:
43
一、查询 1.点数据:“0101000020E61000002596731D61DA5E40D0DECF4F9EED4440” Geojson 格式查询 : ST_AsGeojson(ST_GeomFromText(st_astext(字段))) select ST_AsGeojson(ST_Geo ...
分类:
其他好文 时间:
2020-09-17 23:07:41
阅读次数:
35
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ /* Document */ /** * 1. Correct the line height in all browsers. * 2. Pre ...
分类:
Web程序 时间:
2020-09-17 23:02:06
阅读次数:
32
const arr = [21, 2, 5, 3, 1, 2, 6, 3, 3]; function select(data) { var index; for (let i = 0; i < data.length - 1; i++) { index = i; for (let m = i; m ...
分类:
编程语言 时间:
2020-09-17 22:25:51
阅读次数:
36
h5:<!doctypehtml><htmllang="en"><head><metacharset="UTF-8"><metaname="Generator"content="EditPlus?"><metaname="Author"content=""><metaname="Keywords"content=""&g
分类:
移动开发 时间:
2020-09-17 22:16:19
阅读次数:
39
2020年8月份OCP071考试新题(-1)CUUG内部考试Choosetwo.Examinethisquery:SELECT*FROMbricks,colors;Whichtwostatementsaretrue?A)YoucanaddaWHEREclausewithfilteringcriteria.B)ItreturnsthesamerowsasSELECT*FROMbricksCROSSJ
分类:
其他好文 时间:
2020-09-17 22:03:05
阅读次数:
21