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.
在将旧数据库导入 SQL Server 时,我设法为成千上万的人提供了相同的名字和姓氏(我太棒了)。是否有脚本可以运行以使每个人的名字列为空白或说First Name?
First Name
谢谢
尝试 update [tablename] set [firstname] = ''
update [tablename] set [firstname] = ''