This is my current script, I know it is not right, but I don't know how to correct it. Please help. THANKS
@list_source = "a,b,c,d"
Set MyConn=Server.CreateObject("ADODB.Connection"
MyConn.Open "DBNAME", "sa", ""
SQL = "Select * From CUSTOMER where src in " & @list_source & ";"
Set RS = MyConn.Execute(SQL)
@list_source = "a,b,c,d"
Set MyConn=Server.CreateObject("ADODB.Connection"
MyConn.Open "DBNAME", "sa", ""
SQL = "Select * From CUSTOMER where src in " & @list_source & ";"
Set RS = MyConn.Execute(SQL)