Table looks like this:
My simple query so far looks like this:
I have a total of nine banners eg. 13, 06, 18, etc
How would I choose to display the results of several banners of my choosing? Thank you in advance. Peter
Code:
custno custname qty active banner
Code:
/****** Script for SelectTopNRows command from SSMS ******/
SELECT ALL[custno]
,[custname]
,[qty]
,[active]
,[banner]
FROM [mydatabase].[dbo].[subscribe]
WHERE qty > 1 AND active = 1 AND banner = '99'
How would I choose to display the results of several banners of my choosing? Thank you in advance. Peter
Comment