Click to See Complete Forum and Search --> : SQL Server query problem


mattastic
03-13-2007, 11:56 AM
Hi Folks,

Can anyone tell me how I can get this query to work.

SELECT * FROM JL_av_items WHERE 'Lap,Proj,SPK ' = Abbreviation;

I want to display all where the abbreviation column equals the list item.

Thankyou

NightShift58
03-14-2007, 02:46 AM
SELECT * FROM JL_av_items WHERE Abbreviation IN ('Lap','Proj','SPK')