Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データベースの2つの列を永続的にマージする必要があります。どうすればよいですか?
これは何かをする必要があります:
ALTER TABLE table ALTER COLUMN f1 NVARCHAR(4000) UPDATE table SET f1 = ISNULL(f1,'') + '' + ISNULL(f2, '') ALTER TABLE table DROP COLUMN f2