我有一个奇怪的问题,我的查询如下所示。
String tokenQuery = "select id from table
where current_timestamp between
creation_time and (creation_time + interval '10' minute)
and token = '"+Token+"'";
但是当我运行时jdbcTemplate.queryForLong(tokenQuery)
,无论如何,它总是抛出 EmptyDataAccessException。我在 Oracle 中执行这个我们不能将动态值附加到字符串然后将其作为查询传递并执行吗?可能是什么问题 ?