SQL:select * from smfd_ForeighStockPoint where AddTime between '2010/5/26 8:30:05' and '2010/5/26 8:40:05' oracle的日期格式是‘04-3月 -10 10.32.04.460000 上午’,请问这样怎么写??to_date函数 select * from smfd_ForeighStockPoint where AddTime between to_date('2010/5/26 8:30:05','yyyy/mm/dd HH24:mi:ss') and to_date('2010/5/26 8:40:05','yyyy/mm/dd HH24:mi:ss')