I am trying to display the table using where condition on id column, but when I run the query the query, the table displays without where condition
Table: test
id name
1 aaa
2 bbb
3 ccc
I want to display the table like below :
Select * from test where id in ('2','3','1')
when I run the above query it is displayed as failing where condition.
1. aaa
2. bbb
3. ccc