Viewing 4 posts - 1 through 5 (of 5 total)
Chris Morris-439714 (12/23/2009)
-- 1. Write a query which returns the rows which you want updated from the table you want to update.
SELECT DISTINCT Confirmed, Attended, R.ParticipantID, NameFirst, NameLast,...
December 23, 2009 at 4:17 pm
GilaMonster (12/23/2009)
Seeing as some of the tables in the exists don't join together, I'd prefer to split it apart.
Which table are those datetime columns in?...
December 23, 2009 at 4:12 pm
Unfortunately I did not design these tables, the Keys are not of any use on them.
In order to get to the to fields I need to update, I need...
December 22, 2009 at 3:24 pm
All right that was a simple fix! Thanks Gila Monster. check it out here are the changes I made
CREATE PROCEDURE sp_DataTest
@fName as varchar(50),
@lName as varchar(50),
@pstrClass as varchar(50),
@strTranDateFrm as char(06),
@strTranDateTo as...
December 22, 2009 at 11:42 am
Viewing 4 posts - 1 through 5 (of 5 total)