I am constructing a SQL Developer query to retrieve records with a specified status'. Multiple values can also be selected. How can I update my query to include records with multiple "Status" values? which are semicolon delimited i.e. Off; Pending
Here is my query which only returns records with a singular status:
Select * from LOGS where Status= 'Off' or Status = 'Pending' or Status = 'ON';
or Status = 'Off; Pending'? So perhaps that is not what you mean? Please clarify.