I have query with an IN
clause.
select * from student where id in (1, 2, 3, 4, 5)
How will the engine parsed and execute this SQL query?
Is it like this, parsed in five different queries or something else?
select * from student where id = 1
select * from student where id = 2
select * from student where id = 3
select * from student where id = 4
select * from student where id = 5