Viewing 2 posts - 1 through 3 (of 3 total)
Ah, thanks.
That example straightened out the logic of aliasing the tables a bit better in my head.
The problem I have now run into is that it wants me to add...
April 22, 2003 at 9:26 am
#454917
Here ya go:
IF EXISTS (SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.VIEWS
WHERE TABLE_NAME = 'SMC_Test')
DROP VIEW SMC_Test
GO
CREATE VIEW SMC_Test
AS
SELECT...
April 21, 2003 at 11:03 am
#454806