标签: oracle
使用MySQL,我可以像下面那样编写SQL。 select * from t where (col1,col2) < (?,?) 我怎么能在Oracle中这样做? select * from t where (col1 < ?) or (col1=? and col2 < ?)不够好。 它不优雅,很难扩展到N列比较。
select * from t where (col1,col2) < (?,?)
select * from t where (col1 < ?) or (col1=? and col2 < ?)