我需要类似的东西
select * from tableName where date_column > now()
但是,现在()在H2中不起作用.请指教.
解决方法
使用CURRENT_TIMESTAMP
select * from tableName where date_column > CURRENT_TIMESTAMP()