Select Rows with Condition on Two Columns in SQL Server

selectsql server

i have table with columns
Number and VAT
How can i select all rows without row which is Number=123 and VAT=15 ?
I tried something like this

SELECT * FROM tablex WHERE <.. zilions of conditions..> AND (Number=123 AND VAT!=15)

But it does not work, i need every rows and with Number 123 too but not in case if VAT is 15.
Any idea ? Thank you

Best Answer

then u can use this one

SELECT * FROM tablex WHERE Number<>123 OR VAT<>15