sql查询出来a表的某个字段插入到b表中,同时向a表插入别的数据

sql查询出来a表的某个字段插入到b表中,同时向a表插入别的数据

 

RefundInfo_Config

字段

类型

为空

ID

Int

AccountId

Bigint

MaxAmount

Int

MinAmount

Int

RefundCount

Int

Rate

Int

WeekDay

Int

 

 

 

 select distinct accountId from B_AccBankPOS_Share where createtime>=2012-6-1这个是查a表的

想把查询出来的数据加上1,10000,500,1,80,5插入到b表中

insert into RefundInfo_Config (AccountId,MaxAmount,MinAmount,RefundCount,Rate,[WeekDay]) select distinct accountId from B_AccBankPOS_Share where createtime>=2012-6-1,10000,500,1,80,5

 

这样写不对。求指点

幕布斯6054654
浏览 1152回答 4
4回答

神不在的星期二

把SQL语句改为: insert into RefundInfo_Config (AccountId,MaxAmount,MinAmount,RefundCount,Rate,[WeekDay]) select distinct accountId,10000,500,1,80,5 from B_AccBankPOS_Share where createtime>='2012-6-1'

慕斯王

1 insert into RefundInfo_Config (AccountId,MaxAmount,MinAmount,RefundCount,Rate,[WeekDay]) values (select distinct accountId from B_AccBankPOS_Share where createtime>=2012-6-1), 10000,500,1,80,5

慕斯709654

View Code insert into RefundInfo_Config (AccountId,MaxAmount,MinAmount,RefundCount,Rate,[WeekDay]) values((select distinct accountId from B_AccBankPOS_Share where createtime>=2012-6-1), 10000,500,1,80,5)

萧十郎

insert into RefundInfo_Config (AccountId,MaxAmount,MinAmount,RefundCount,Rate,[WeekDay]) select distinct accountId,10000,500,1,80,5 from B_AccBankPOS_Share where createtime>=2012-6-1 这下应该行了
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

SQL Server