hi,
i have a table table1.i want to retrieve 2 rows in one pararameter
Eg-table1 colums are tableid,tabledescription.Table fields are (1,customer),(2,sale),(3,vehicle)
Declare @TableID
Set @TableID=(Select tabledescription from table1 where (tabledescription='customer' OR tabledescription='vehicle')
when i execute this query,i am gettng an error..