0
点赞
收藏
分享

微信扫一扫

数据库常用查询

一葉_code 2022-01-31 阅读 74

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

;

在这里插入图片描述

举报

相关推荐

0 条评论