0

如果我的答案在另一篇文章中,我还没有找到。我认为可能有我的答案的帖子是“我想连接来自 2 个文本区域的 2 个字符串并将它们插入到我的表中的列中。”

我正在转换一些数据。其他数据库的文本存储在同一个表中,不同的字段。每个字段(x.description_plain_text 都有一个序列号,如脚本中所示。正如您在我的尝试中看到的那样,我想将两个文本行放入一个(varchar(8000))字段并用一行分隔或二. 我不知道是否允许我标记第二个目标,但是如果/在我将其他数据库中的这些单独的行放入新数据库的一个字段中之后,我希望能够在每个字段旁边放置一个标识符...正如我试图在第二张插图中展示的那样...

第一个插图

--select x.description_plain_text, x.SEQ_NO
update MIC.dbo.Item  set CustomerDocumentNote = 
case 
when x.SEQ_NO = 1 then cast(x.description_plain_text as varchar(8000))
when x.SEQ_NO = 2 then cast(x.description_plain_text as varchar(8000))
END
-- x.description_plain_text + CHAR(13) + CHAR(10) + cast(x.description_plain_text as varchar     (8000))
from MIC.dbo.Item a
inner join in_item_xdesc x on x.item_id = a.itemid
where (a.ItemNumber = '14661')--(IS_PRINT_ACKNOW = 'Y' and SEQ_NO = 2)

第二个插图...需要一个 SQL 查询,它只会给我 P_A 的描述... P_A 只是一个标识符...可以是任何东西...只是一种说法 If P_A then print 但 IF P_PT_PO THEN print 。 ..

P_A - Heater with 1.5" OD flange at 2.5", 48" mica leads with 36" SS braid exiting 90° from sheath, single clip support. 800 Watts & 240 Volts.  For Gala pellitizer. 

+ CHAR(13) +

P_PT_PO - Stamp "MIC #14661" on OD of heater. Silicone over Cement at lead ends.
4

0 回答 0