I am trying to write a sproc that inserts a record then returns a
recordset......is this possible?
Here is what i have, however, I get nothing back....
Any Ideas?
Thanks!
As
Insert into tblPoll (yes) SELECT '1' As yes;
ELSE
Insert into tblPoll (no) SELECT '1' As no;
ELSE
Insert into tblPoll (sometimes) SELECT '1' As sometimes;
Select * From tblPoll
return