我希望我能够理解这一点,但是这里有。
我想要做的是从两个表中获取信息(通过JOIN),然后将这两个表中的信息更新到第三个表中。以下是我编写的一些测试代码,它几乎可以模仿我需要做的事情。
我唯一的问题是,在" SELECT * FROM @ tempTable"最后...我不确定如何获取UPDATE来处理@tempTable表中的userName和badgeId列。我尝试过的所有内容最终都会将其插入到自己的行中,就好像我正在插入一样......
感谢任何帮助。我在MS SQL Server 2008 R2中编写并运行了代码,因此它应该可以工作。
/* Create the 'Users' table */
DECLARE @Users TABLE(
[Id] [int] IDENTITY(1,1) NOT NULL,
userName varchar(100),
UserId int)
INSERT INTO @Users (userName, UserId)
VALUES ('jim', 100),
('kira', 200),
('ken', 300),
('dan', 400),
('len', 500)
/* Create the 'Badges' table */
DECLARE @Badges TABLE(
[Id] [int] IDENTITY(1,1) NOT NULL,
badgeId varchar(100),
userId int)
INSERT INTO @Badges (badgeId, UserId)
VALUES (10, 100),
(20, 200),
(30, 300),
(40, 400),
(50, 500)
/* Create the '@tempTable' */
DECLARE @tempTable TABLE(
[Id] [int] IDENTITY(1,1) NOT NULL,
userName varchar(100),
badgeId int,
divNumber int,
secNumber int)
INSERT INTO @tempTable (badgeId, userName, divNumber, secNumber)
VALUES (null, null, 68, 34),
(null, null, 68, 34),
(null, null, 69, 24),
(null, null, 69, 24),
(null, null, 70, 14)
/* Select userNames and badgeIds from the 'Users' and 'Badges' tables */
SELECT u.userName, b.badgeId
FROM @Users as u
INNER JOIN @Badges as b
ON b.userId = u.UserId
/* Select all information from the '@tempTable' table */
SELECT * FROM @tempTable
答案 0 :(得分:1)
如果我理解你的要求,请在最后使用此更新声明。
update @tempTable
set userName = u.userName,
badgeId = b.badgeId
FROM @Users as u
INNER JOIN @Badges as b
ON b.userId = u.UserId