Below query will return all records in the table.
select * from tblArea
where AreaDescription in
(AreaDescription,'Processing1','Geology 66','Site Infrastructure')
Note the "AreaDescription" column, we have passed it to the IN query so that the query will return all rows in "AreaDescription" column.
Note the "AreaDescription" column, we have passed it to the IN query so that the query will return all rows in "AreaDescription" column.
No comments:
Write comments