oracle常用经典SQL查询 常用SQL查询: .查看表空间的名称及大小 )),) ts_size from dba_tablespaces t, dba_data_files d where t.tablespace_name = d.tablespace_name group by t.tablespace_name; .查看表空间物理文件的名称及大小 select tablespace_name, file_id, file_name, ),) total_space from dba_…
表相关 1.快速统计大表记录数 select table_name, t.num_rows, t.last_analyzed from tabs t WHERE table_name='TABLE_NAME'; 可能统计的不是很准确,在统计前先在command下面执行EXEC dbms_stats.gather_table_stats('[空间名称]','[tablename]',cascade=>true);刷新表中的num_rows 2.修改表字段类型 alter table t0_sys…
第一部分 基本语法 //拼接表字段 select id || 'is' || name from admin select * from emp where ename like '%s%';//模糊查询 select * from emp where mgr is null ; //查询表列为空的 to_date('2011-12-12','yyyy-mm-dd') //插入时间格式 to_date() //给表字段取别名 select id as 这是ID , name …
1.分页 select t2.* from (select rownum row, t1.* from your_table where rownum < ?) t2 where t2.row > ? 2.查看oracle数据库的某个表上已经建立了那些索引 select index_name from dba_indexes where table_name='your_table'; 3.如果表中有数据后给表增加约束会出现“无效的alter table选项”错误 alter table e…
1,查询插入 insert into user_role(account_id, role_id, create_user) select t.employee_id, 'BC8FBF8B1D9843A2AE83B2310AC57C28', 'ADMIN' from ACCOUNT t where employee_id not in (select account_id from user_role) 2, 按年查询 where o.YEAR=EXTRACT(YEAR FROM SYSDATE…
1.多条件 查询 上下级 所有数据 select * from OrgUnit where (ParentId = '3' or OrgId='3' or ParentId in (select OrgId from OrgUnit where ParentId='3')) 2.相同列数的 多个查询结果 组合(union all) select a,b,c from table1 union all select ca,cb,cc from table2 3.左外连接 与 右外连接 (left…
sql常用联合查询的 join on . left join(左连接) . right join (右连接).inner join (等值连接)以及常用的集合运算有:union.unionall.minus.intersect的效果和总结. 若有人问我用select * from a,b where a.id=b.id;这种基础的语法就能完成我想要的结果,为什么用join等语法呢,答案是:这样做,极大的提高的查询效率. 首先接着用上一篇的book表和pbook表: 首先把join on和inne…
各种oracle参数查询语句 1.show parameter:--显示各个系统参数配置 2.select * from v$parameter;--显示各个系统参数配置 2.show parameter 参数名;--显示具体参数的配置情况 3.select * from v$parameter where name='参数名';--显示具体参数的配置情况 4.select * from nls_database_parameters;--服务器字符集查询5.select * from nls_…