oracle数据库使用时间作为查询条件时的写法

前端之家收集整理的这篇文章主要介绍了oracle数据库使用时间作为查询条件时的写法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
select 目标列 from 表名 where 时间列=to_date('时间','yyyy-mm-dd hh24:mi:ss');比如select name from birth_info where birthday between to_date ('2001-03-05','yyyy-mm-dd')andto_date ('2001-03-15','yyyy-mm-dd');

猜你在找的Oracle相关文章