I have the following sql query
select * from tblArea where AreaDescription in ('Processing1','Geology 66','Site Infrastructure')
he is currently showing records where AreaDescription is ('Processing1', 'Geology 66', 'Site Infrastructure')
but I need to pass the value to the query, which will always be true and show all the records. I know that I can use the where clause
where 1=1
but here i need to use the in.is instruction maybe?
source share