sql - Trying to show datediff for specific category -


how show or unshow datediff specific category? have

datediff(day, displaybegindate, getdate()) <= 60 

and shows items categories.

what should add if want show categories except categoryid 353?

thanks.

select * table datediff(day, displaybegindate, getdate()) <= 60 , categoryid<> 353 

Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -