access 2016 将多字段附加到一个字段

access 2016 append multifield to one field

[![在此处输入图片描述][1]][1]祝大家愉快。

我有一个 table,其中包含一些字段,例如附件 T_Jadwal2.jpg。 https://i.stack.imgur.com/mPuBg.jpg 我需要 table 插入到其他 table 中,格式不同,例如 T_Jadwal3.jpg https://i.stack.imgur.com/hRg7y.jpg 请将查询中的解决方案附加到 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

在追加查询中使用它作为源。