添加记录时,表的其中一个字段需要SELECT另外两个表来确定其值,那么INSERT语句中应该怎么写啊?
发布网友
发布时间:2022-04-16 03:24
我来回答
共2个回答
热心网友
时间:2022-04-16 04:54
create table test1
(
id int identity(1,1),
name varchar(20),
age int
)
create table test2
(
id int,
name varchar(20),
age int
)
create table test3
(
id int,
name varchar(20),
age int
)
declare @name varchar(20)
,@age int
select @name=name from test2 where id=1
select @age=age from test3 where id=2
insert test1(name,age) values(@name,@age)
说明:test1,test2,test3是表名.
您只需要把id=1,id=2换成您想要的条件即可.
这个条件即决定您想要在另外两张表取出的数据.
wish help.
热心网友
时间:2022-04-16 06:12
添加记录时,表的其中一个字段需要SELECT另外两个表来确定其值,那么INSERT语句中应该怎么写啊?
INSERT [表名] SELECT [字段名],[字段名].....FROM [表1] A,[表2] B WHERE A.[关联列]=B.[关联列]