数据库常用查询

1 查询表格

select * from tbl__1 ;

数据库常用查询
2 针对某一条件查询

select * from tbl_bill_log_1    使用where
where callerno = xxxxx121113
;

数据库常用查询

3 追加查询条件 加and 时间条件要进行转换
小时如下:

to_char(ackbegin,'HH24:mi:ss') >= '11:00:00'

年月日如下:

 to_char(ackbegin,'YYYYMMDD HH24:mi:ss') >= '20220105 02:00:00'
select * from tbl_bill_log_1 
where callerno = xxxxx121113
and  to_char(ackbegin,'YYYYMMDD HH24:mi:ss') >= '20220105 02:00:00'
and  to_char(ackbegin,'YYYYMMDD HH24:mi:ss') <= '20220105 03:00:00'
;

数据库常用查询
对某一条件进行升序排列 使用order by
升序:

select * from tbl_bill_log_1 
where callerno = xxxxx121113
and  to_char(ackbegin,'YYYYMMDD HH24:mi:ss') >= '20220105 02:00:00'
and  to_char(ackbegin,'YYYYMMDD HH24:mi:ss') <= '20220105 03:00:00'

order by  ackbegin  asc
;

数据库常用查询
降序:

select * from tbl_bill_log_1 
where callerno = xxxxx121113
and  to_char(ackbegin,'YYYYMMDD HH24:mi:ss') >= '20220105 02:00:00'
and  to_char(ackbegin,'YYYYMMDD HH24:mi:ss') <= '20220105 03:00:00'

order by  ackbegin  desc

;

数据库常用查询

上一篇:00后是真干不过,公司新来的00后测试员已把我卷崩溃了...


下一篇:《Web安全之机器学习入门》笔记:第十五章 15.7 TensorFlow识别垃圾邮件(一)