簡體   English   中英

訪問 2016 append 多字段到一個字段

[英]access 2016 append multifield to one field

[.[在此處輸入圖片描述][1]][1]大家好。

我有一個表格,其中包含一些字段,例如附件 T_Jadwal2.jpg。 https://i.stack.imgur.com/mPuBg.jpg我需要將表格插入到其他表格中,格式不同,例如 T_Jadwal3.jpg https://i.stack.imgur.com/hRg7y.jpg有對 append T_Jadwal2 到 T_Jadwal3 的查詢的解決方案

謝謝你。

問候, 費爾南多

像這樣創建一個聯合查詢

Select ID_Jadwal, [Shift], Supervisor As Nm_Karyawan, "Supervisor" As Posisi
From YourTable
Where Supervisor Is Not Null
Union All
Select ID_Jadwal, [Shift], Printing, "Printing"
From YourTable
Where Printing Is Not Null
Union All
Select ID_Jadwal, [Shift], Tinta, "Tinta"
From YourTable
Where Tinta Is Not Null
Union All
Select ID_Jadwal, [Shift], Cylinder, "Cylinder"
From YourTable
Where Cylinder Is Not Null
Union All
Select ID_Jadwal, [Shift], Dry, "Dry"
From YourTable
Where Dry Is Not Null
Union All
Select ID_Jadwal, [Shift], Extrusion, "Extrusion"
From YourTable
Where Extrusion Is Not Null
Union All
Select ID_Jadwal, [Shift], Slitting, "Slitting"
From YourTable
Where Slitting Is Not Null
Union All
Select ID_Jadwal, [Shift], Rewind, "Rewind"
From YourTable
Where Rewind Is Not Null

在您的 append 查詢中使用它作為源。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM