前几天我问了一个与列标题有关的类似问题。现在我在徘徊
update table1
set column1=REPLACE(column1, '"','')
update table2
set column2=REPLACE(column2, '"','')
update table3
set column3=REPLACE(column2, '"','')
可能实现。我敢肯定,这将是一些涉及sys.objects
或information_schema.columns
类似的事情(无论 SSMS 中的绿色关键字被称为什么)。
这必须用光标完成吗?