Viewing 3 posts - 1 through 3 (of 3 total)
final solution:
I created a stored procedure of the query with an input parameter of @authoremail. This allowed me to set a string variable, @myquery, equal to the execute statement +...
March 5, 2002 at 3:29 pm
Thanks for the replies. I will try a temp table.
I have removed code for the sake of simplification, that is why some parts are not there.
February 26, 2002 at 10:40 am
SAMPLE CODE:
declare @authoremail as varchar(80)
declare @authorhomeemail as varchar(80)
declare emcursor cursor
global
for
select distinct authorid, authoremail from authors
where authorid is not null and authoremail is not null
and authoremail not like '' and authorid...
February 25, 2002 at 9:11 pm
Viewing 3 posts - 1 through 3 (of 3 total)