SQL Server语言 - TSQL 程序问题和建议



>我正在寻找有关完成以下任务的最佳方法的建议

我在SQL Server中有一个表,用于保存从外部系统下载的数据。我需要使用它来更新另一个数据库。一些记录将是插入的,而另一些将是更新的。有一个注释表和一个要插入/更新的主表。注释通过注释表中创建的 ID 链接,并存储在主表记录的列中。(一对一关系)

因此,插入到注释表中并获取一个scope_identity返回值,然后将其用作主表的插入语句的一部分。

更新

从主表中的记录中获取注释 ID,然后在必要时更新注释表,并在必要时更新主表

EG 表有 5 条记录

Get first record
If exists in database
get commentID column from comment table and update comment and main table
If not exists
insert into comment table and return comment ID and insert the record into the main table with that comment ID
get the next record

我正在努力弄清楚如何在SQL Server中最好地做到这一点。找不到光标、循环、存储过程等的正确组合。 在SQL Server中没有做太多的过程工作。

任何建议/帮助将不胜感激

谢谢

哈博。 我感谢您的反馈。我确实很难写一个清晰简洁的问题。 链接的页面提供了很好的建议。 希望下面的脚本有助于澄清。

再次感谢。

USE TEMPDB
--TABLE TO HOLD JOB RECORDS
create table tbl_jobs(
jobnumber varchar(16) primary key clustered,
jobdesc varchar(50),
commentID int
)
GO
INSERT INTO tbl_jobs VALUES ('Job1','Desc1', '1')
INSERT INTO tbl_jobs VALUES ('Job2','Desc2', '2') 
INSERT INTO tbl_jobs VALUES ('Job3','Desc3', '3') 
--TABLE TO HOLD JOB RECORD COMMENTS
create table tbl_jobComments(
commentID INT IDENTITY(1,1) NOT NULL,
comment text
)
GO
Insert into tbl_jobComments VALUES ('Comment1')
Insert into tbl_jobComments VALUES ('Comment2')
Insert into tbl_jobComments VALUES ('Comment3')

--TABLE TO HOLD RECORDS DOWNLOADED FROM EXTERNAL SYSTEM
create table tbl_updates(
jobnumber varchar(16) primary key clustered,
jobdesc varchar(50),
comment text
)
GO
INSERT INTO tbl_updates VALUES ('Job1','Desc1Modified', 'Comment1')
INSERT INTO tbl_updates VALUES ('Job2','Desc2', 'Comment2') 
INSERT INTO tbl_updates VALUES ('Job3','Desc3Modified', 'Comment3')  
INSERT INTO tbl_updates VALUES ('Job4','Desc4', 'Comment4') 
GO
--OUTPUT FROM tbl_Jobs
+-----------+---------+-----------+
| jobnumber | jobdesc | commentID |
+-----------+---------+-----------+
| Job1      | Desc1   |         1 |
| Job2      | Desc2   |         2 |
| Job3      | Desc3   |         3 |
+-----------+---------+-----------+
--OUTPUT FROM tbl_JobComments
+-----------+----------+
| commentID | comment  |
+-----------+----------+
|         1 | Comment1 |
|         2 | Comment2 |
|         3 | Comment3 |
+-----------+----------+
--OUTPUT FROM tbl_updates
+-----------+---------------+-----------+
| jobnumber |    jobdesc    | comment   |
+-----------+---------------+-----------+
| Job1      | Desc1Modified | Comment1  |
| Job2      | Desc2         | Comment2a |
| Job3      | Desc3Modified | Comment3  |
| Job4      | Desc4         | Comment4  |
+-----------+---------------+-----------+

--DESIRED RESULTS tbl_jobs
+-----------+-----------------+-----------+
| jobnumber | jobdesc         | commentID |
+-----------+-----------------+-----------+
| Job1      | Desc1Modified   |         1 |
| Job2      | Desc2           |         2 |
| Job3      | Desc3Modified   |         3 |
| Job4      | Desc4           |         4 |
+-----------+---------+-------------------+
--DESIRED RESULTS tbl_jobs_comments
+-----------+-----------+
| commentID | comment   |
+-----------+-----------+
|         1 | Comment1  |
|         2 | Comment2a |
|         3 | Comment3  |
|         4 | Comment4  |
+-----------+-----------+

您可以将其分为 2 个语句,一个更新和一个插入查询

(这假设每个 ID 只有 1 条注释)

UPDATE maintable
SET Comment=upd.comment
FROM maintable mt
JOIN updatestable upd
ON mt.id=upd.id

然后插入缺少的内容:

INSERT INTO maintable (id,comment)
SELECT id, comment
FROM updatestable
WHERE id NOT IN (SELECT id FROM maintable)

相关内容

  • 没有找到相关文章

最新更新