Hi All,

I know that we can do stuffs like
declare @temp1 varchar(20), @temp2 varchar(20)
set @temp1 = A
set @temp2 = Z

select * from table where table.column = @temp1

I would like to do something like this.

set @temp1 = ('A','B','C')
select * from table where table.column IN @temp1


Is it possible?
-- 
Ow Mun Heng <[EMAIL PROTECTED]>


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to