You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WHERE clause formatting has some cases where formatting does not work properly.
SELECT ID FROM Account WHERE OwnerId ='0013t00001nJsHJAA0'AND ( AccountNumber ='Open'OR AccountNumber ='Called Off Rent' ) AND ( (NOT Name LIKE'H%') OR (NOT Name LIKE'L%') OR (NOT Name LIKE'W%') OR (NOT Name LIKE'R%') )
SELECT ID
FROM Account
WHERE OwnerId ='0013t00001nJsHJAA0'AND (
AccountNumber ='Open'OR AccountNumber ='Called Off Rent'
)
AND (
(NOT Name LIKE'H%')
OR (NOT Name LIKE'L%')
OR (NOT Name LIKE'W%')
OR (NOT Name LIKE'R%')
)
The text was updated successfully, but these errors were encountered:
Description
WHERE clause formatting has some cases where formatting does not work properly.
The text was updated successfully, but these errors were encountered: