数据库常用查询

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

;

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值