第一步,是用sql语句先把两个表的内容合并;
sele ct 品名, 入库日期 as 日期, 入库数 as 数量, '入库' as 类型, '' as 去向 from {物品入库明细} where 品名 is not nullunion all sele ct 品名, 出库日期, 出库数, '出库', 出库去向 from {物品出库明细} where 品名 is not null
第二步,根据生成的表,任意的使用 数据统计 的功能去生成自己想要的报表。