Hello All,I've got a newbie question for you and I'm out of practice in SQL. I'm trying to modify an SQL query that has multiple AND conditions in my WHERE clause. The modification requires the new condition to be an OR. My existing query is like this:SELECT * FROM Magicdb._SMDBA_.[Help Desk] WHERE([Group Name] = 'REG_ATL_IT')AND ([State:] = 'O')AND ([Problem Description] LIKE '%atlantic%');
The query needs to be modified so that it would be something to the effect ofSELECT * FROM Magicdb._SMDBA_.[Help Desk] WHERE([Group Name] = 'REG_ATL_IT')AND ([State:] = 'O')AND ([Problem Description] LIKE '%atlantic%')OR ([Problem Description] LIKE '%426-%');
But that causes errors when trying to run the query. Any thoughts or help are appreciated.