oracle 使用instr()函数对in查询出的记录按照in中的数据进行排序

需求:输入汉字,得出它的拼音码、五笔码;
方法:使用instr()函数
select * from cnword
where word in ('我','们','是','祖','国','的','花','朵')

order by instr('我们是祖国的花朵',word )


感受:oracle本身的函数还是很强大的,自己知道的太少了

你可能感兴趣的:(oracle 使用instr()函数对in查询出的记录按照in中的数据进行排序)