Oracle常用SQL语句
--2.查看表结构
desc wx_monitor_excption; --3.从表中查询数据
select * from wx_monitor_excption; --7.双引号保持原来的格式
select id "id1" from wx_monitor_excption; --6.查询当前系统的日期
select sysdate from dual; --8.查询数字时,把为空值的换为0,oracle中空值运算结果都为null
select id,remark from wx_monitor_excption where remark is null;
select id,plate_number,nvl(remark,'null') from wx_monitor_excption; --9.字符串连接(把两个字段查询出来的数据作为一条字符串输出)两个单引号代替一个
select id||openid from wx_monitor_excption;
select id||'nimei' from wx_monitor_excption; --10.去掉重复的值(也会去掉多个字段组合重复的值)
select distinct plate_number from wx_monitor_excption; --12.条件 between and (包含800和1500) 'or' and 'and'
select * from wx_monitor_excption where (create_time between '26-12月-14' and '30-12月-14') or exception_category='堵车上报';
select * from wx_monitor_excption where create_time>='26-12月-14' and create_time<='30-12月-14'; --15. 模糊查询 %零个或多个,下横线_代表一个
select * from wx_monitor_excption where position like '%上海%'; --17.排序 order by 默认升序asc
select * from wx_monitor_excption order by create_time asc; --18.函数 转化为小写lower()
select lower(openid) from wx_monitor_excption; --19.函数 截子串substr(ename,2,3) 从字符串ename中第2个开始截,一个截3个字符
select substr(openid,6,4) from wx_monitor_excption; --20.函数 把数字转化为相应的字母,相反 ascii('A')
select chr(77) from dual; --21.函数 四舍五入
select round(23.77) from dual;
select round(23.456,2) from dual;
select round(23.456,-1) from dual; --22.函数 把数字或字母或日期转化为特定的格式 to_char(sal,'$99,999.9999'), $换成L,显示¥
select to_char(create_time,'yyyy-MM-dd hh24:mm:ss') from wx_monitor_excption;
select * from wx_monitor_picstatus;
select to_char(len,'$99,999.99') from wx_monitor_picstatus;
select to_char(len,'$00,000.00') from wx_monitor_picstatus; --23.函数 把特定的字符转化为日期 to_date('', '')
select to_char(sysdate,'YYYY-MM-DD HH24:MI:SS') from dual; --24.函数 把特定的字符转化为数字 to_number('$1,250.00', '$9,999.99')
select * from wx_monitor_picstatus where len>to_number('',''); --27.组函数 求出总共多少条数据 count(*),count(ename), 凡是不是空值的字段一共有几个
select count(*) from wx_monitor_picstatus; --28.函数 分组查询 group by
select openid,count(openid) from wx_monitor_excption group by openid; --45.创建视图 create view v$name as 重复使用的语句. 视图就是一个子查询,就是一张表
create view nimei as select * from wx_monitor_excption where plate_number='沪A12312'; --46.插入语句
insert into wx_monitor_excption(id,openid,carline,plate_number,phone_number) values('','','','','');
select * from wx_monitor_excption where id=''; --47.备份表
create table tab1 as select * from wx_monitor_excption;
--删除表中的数据
delete from tab1;
select * from tabl;
--完全删除表
drop table TAB1; --48.伪字段 rownum 默认从第一行往后排列序号1,2,3等,必须< = 号;
select * from wx_monitor_excption where rownum<10;
rollback;
commit; --54.约束 自定义名字 非空约束
create table TAB1(id number(5),name varchar(50) not null);
select * from tab1;
desc tab1;
insert into tab1 values(123,'wooooo',''); --58.修改现有表的表结构
alter table tab1 drop(create_time);
alter table tab1 add(create_time varchar2(50));
alter table tab1 modify(create_time varchar(10)); --64.索引 index
create index syname on wx_monitor_excption(plate_number,openid);
desc wx_monitor_excption; --65.删除索引
drop index syname; --66.序列 oracle独特的 自动递增
create sequence sename;
drop sequence sename;
select sename.nextval from dual;
Oracle常用SQL语句的更多相关文章
- oracle常用SQL语句(汇总版)
Oracle数据库常用sql语句 ORACLE 常用的SQL语法和数据对象一.数据控制语句 (DML) 部分 1.INSERT (往数据表里插入记录的语句) INSERT INTO 表名(字段名1, ...
- oracle 常用sql语句
oracle 常用sql语句 1.查看表空间的名称及大小 select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_sizefrom d ...
- Oracle常用SQL语句大全
常用Oracle数据库SQL语句汇总. 1.常用操作 --清空回收站purge recyclebin;--查询回收站select * from recyclebin--查询Oracle版本信息sele ...
- Oracle 常用Sql 语句
Oracle数据库常常被用作项目开发的数据库之一:有时隔段时间没使用就会忘记一些常用的sql语法,所以我们有必要记录下常用的sql 语句,当我们需要时可以快速找到并运用. 1 创建表空间.创建用户及授 ...
- Oracle常用sql语句(一)
# Sql的分类 # DDL (Data Definition Language):数据定义语言,用来定义数据库对象:库.表.列等: CREATE. ALTER.DROP DML(Data Manip ...
- Oracle常用sql语句。
最近工作中遇到了一些与oracle相关的问题,稍微整理一些工作中用到的SQL语句 时间相关 --查询距当前时间十分钟内的数据 select sysdate -interval '10' minute ...
- Oracle常用sql语句(二)之组函数、多表查询
DML(数据操纵语言) INSERT .UPDATE. DELETE 插入操作:INSERT: 语法: INSERT INTO 表名(列名1,列名2 ...)VALUES(列值1,列值2...); 注 ...
- oracle常用sql语句和函数
--查询表的字段数 select count(*) from user_tab_columns where table_name = '表名'; --查询数据库用户密码的profile(一般为defa ...
- Oracle常用sql语句(三)之子查询
子查询 子查询要解决的问题,不能一步求解 分为: 单行子查询 多行子查询 语法: SELECT select_list FROM table WHERE expr operator (SELECT s ...
随机推荐
- Objective-C 中 NULL、nil、Nil、NSNull 的定义及不同
本文由我们团队的 康祖彬 童鞋撰写,这是他的个人主页:https://kangzubin.cn. 理解"不存在"的概念不仅仅是一个哲学的问题,也是一个实际的问题.我们是有形宇宙的居 ...
- 修改Window的hosts文件提示“该文件被其他程序占用”解决方案
1.打开C:\Windows\System32\drivers\etc中的hosts 2.右键——>属性——>安全 3.在修改保存就可以了
- C# string 数组 每个元素 加上单引号,每一个都被包含在单引号内
在拼接SQL的时候经常会遇到此类问题,尤其是in查询的时候,内容是一段 单引号的 字符的时候 strWhere += " a.EC101_WRYBH IN (" + string ...
- SQL Server数据库(高级查询)
高级查询 1.连接查询 有外键关系的两张表,通过关系一次查询两张表 (1)select * from 表名,表名 --- 直接使用出现笛卡尔积,两个表数据一一对应,查询出的结果数目是两个表的行的乘积, ...
- firefox hack
@-moz-document url-prefix(){ css选择器 { css样式设置 } }
- FaceBook Twitter实习生简历求内推
写在博客里面吧. 有一个朋友,男,博士在读,研究方向为图像处理,计算机视觉相关. 想在在读期间有一些海外实习经历.不知道哪位博友,有相关的人脉,求内推啊.内推成功的话请吃大餐,哈哈!
- BZOJ1218 [HNOI2003]激光炸弹
题目后面写着DP就当它是DP吧.. 本来是扫描线+线段树的说,但是捏5000^2还是能过滴,于是暴力枚举正方形+所谓的DP就解决了. /******************************** ...
- 使用Web Service进行网络编程-----Web Service简介
Android应用通常都是运行在手机平台上,手机系统的硬件资源是有限的,不管是存储能力还是计算能力都是有限的,在Android系统上开发.运行一些单用户.小型应用是可能的,但对于需要进行大量的数据处理 ...
- HDU 4050 wolf5x 概率dp 难度:1
http://acm.hdu.edu.cn/showproblem.php?pid=4050 题意: 现在主角站在0处,需要到达大于n的位置 主角要进入的格子有三种状态: 0. 不能进入 1. 能进入 ...
- subString用法,字符串保持一定位数,不足补0
Substrinig(a,b): 从下标a开始截取,共截取b位 实现:一串数字,中间两位数字+2,生成新的一串数字 "; , number.Length - );//前8位 );//后6位 ...