I have a PL/SQL code like:
case when column between 201203 and 201201
then other_column
end
I know that there are values in column that are 201203. So code should return some values. But it didn't until I corrected it like:
case when column between 201201 and 201203
then other_column
end
Why between keyword works like that? How it is implemented on Oracle Databases?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…