Nov 7, 2006 #1 Jimmy24 IS-IT--Management Sep 7, 2006 21 US I have a table under views named vw_members MemberID MemberName MemberAddress I need to add 2 more columns to the table SegoID SegoName How can I update the table with the new columns I really appreciate your assistance. Regards, Jimmy
I have a table under views named vw_members MemberID MemberName MemberAddress I need to add 2 more columns to the table SegoID SegoName How can I update the table with the new columns I really appreciate your assistance. Regards, Jimmy
Nov 7, 2006 #2 SQLDenis Programmer Oct 1, 2005 5,575 US ALTER VIEW vw_members AS SELECT MemberID,MemberName,MemberAddress,SegoID,SegoName FROM YourTable(s) Denis The SQL Menace SQL blog:http://sqlservercode.blogspot.com/ Personal Blog:http://otherthingsnow.blogspot.com/ Upvote 0 Downvote
ALTER VIEW vw_members AS SELECT MemberID,MemberName,MemberAddress,SegoID,SegoName FROM YourTable(s) Denis The SQL Menace SQL blog:http://sqlservercode.blogspot.com/ Personal Blog:http://otherthingsnow.blogspot.com/