我喜欢获取尚未包含在 Customer_Machine 表中的序列号。但相反,这些行是交叉相乘的。这是我的代码。
SELECT serial_number.serial_no
FROM product
INNER JOIN serial_number
ON product.productid = serial_number.productid
INNER JOIN customer_machine
ON NOT( customer_machine.serial_no = serial_number.serial_no )
请问有什么帮助吗?