Viewing 4 posts - 1 through 5 (of 5 total)
Thanks. Where's a good place to learn about working with dates, using datediff, etc.?
August 23, 2006 at 4:02 pm
Where would I put that fix?
i'm using this script right now.
SELECT
case when CHARINDEX(',',new_contributor) > 0 then
LEFT(new_contributor,CHARINDEX(',',new_contributor) - 1)
else
new_contributor
end as [LNAME],
case when CHARINDEX(',',new_contributor) > 0 then
RIGHT(new_contributor,LEN(new_contributor) - CHARINDEX(' ',new_contributor))
else NULL
end...
June 22, 2006 at 12:10 pm
Viewing 4 posts - 1 through 5 (of 5 total)