送分题,Oracle降序和升序

送分题,Oracle降序和升序,第1张

1、创建测试表,

create table test_name(id varchar2(20),name varchar2(20), birthday date)

2、插入测试数据;

insert into test_name values(1, 'aa', to_date('1990-01-02 10:10:50','yyyy-mm-dd hh24:mi:ss'))

insert into test_name values(2, 'bb', to_date('1987-02-02 10:01:25','yyyy-mm-dd hh24:mi:ss'))

insert into test_name values(3, 'cc', to_date('2000-01-25 09:01:25','yyyy-mm-dd hh24:mi:ss'))

commit

3、编写语句,根据birthday字段进行升序

 select * from test_name t order by birthday

4、编写语句,根据birthday字段进行降序;

 select * from test_name t order by birthday desc

字段类型的问题,你表里字段的数据是数字,但是字段类型应该不是,将字段类型转换为数字,直接排序就可以了

select * from 表名 t

order by to_number(字段名) desc


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6751189.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-27
下一篇 2023-03-27

发表评论

登录后才能评论

评论列表(0条)

保存