HolyForce
I will show you...
What is the Transact-SQL/MSS equivalent of the following:
SELECT *
FROM dual
WHERE some_id = 123
AND some_value <> 'ABC'
I'm seeking to return all columns for rows in 'dual' where the 'some_id' equals '123' but additionally of those rows where 'some_value' ISN'T 'ABC'.
Thanks in advance.
SELECT *
FROM dual
WHERE some_id = 123
AND some_value <> 'ABC'
I'm seeking to return all columns for rows in 'dual' where the 'some_id' equals '123' but additionally of those rows where 'some_value' ISN'T 'ABC'.
Thanks in advance.