SQL总结
菜鸟进军大神陆
菜鸟在路上 -- 拼命的奔跑;前方的光明 -- 路就在脚下;
菜鸟在奔跑 -- 追赶那曙光;黎明在眼前 -- 时光在流逝;
早起的鸟儿 -- 早起的虫儿;大家一起进步吧,进军我们的梦想!
展开
-
oracle创建表空间 扩展表空间文件 修改表空间自动增长
1. 创建表空间create tablespace SIRM2 datafile 'D:\oracle\product\10.2.0\oradata\orcl\SIRM2.dbf' size 1024M --存储地址 初始大小1Gautoextend on next 10M maxsize unlimited --每次扩展10M,无限制扩展EXTENT MANAGEMENT l转载 2017-03-27 12:27:03 · 21762 阅读 · 0 评论 -
SQL 查询某字段不为空
1 sql 查询某字段id为空 select * from 表名 where id is null ; 2 sql 查询某字段id不为空 select * from 表名 where id is not null; 或 select * from 表名 where id转载 2017-06-17 16:05:17 · 143688 阅读 · 1 评论 -
insert into select [Sql]
insert into sys_dict ( name, type, code, value, remark ) select '站点' name, 'qdSite' type, site_id code, ...原创 2018-11-30 10:05:36 · 199 阅读 · 0 评论