SQL数据库insert into 表R(A,B) select (C,D)from 表T,如何把

2025-05-11 01:20:45
推荐回答(2个)
回答1:

insert into 表R (A,B) select 默认值,D from 表T

回答2:

insert into R select 默认值, D from T