select * into bTab from aTab
alter table bTab add userfield numeric(9,2)
GO
update bTab set userfield=123如果改成
select * into bTab from aTab
alter table bTab add userfield numeric(9,2)
update bTab set userfield=123
提示userfield字段未找到。
请问有什么直接一点的方法解决?