Qeと時間を割い:1)MySQLのクエリは
select
a.finishproductid
from
tblt_invoiceorderitems a, tblm_invoiceorder b
where
b.invoiceorderdate <= 'Current Date' and
a.invoiceorderid = b.invoiceorderid
---それ以上の16kのレコードを持っています。
Qeと:2)
select jobcardid, stockcode
from tblm_finishproduct
where productionentrydate <= 'Current Date'
---それはまた、より16Kレコードを有しています。
今私は2番目のクエリから最初のクエリではありません。
select jobcardid, stockcode
from
tblm_finishproduct
where
productionentrydate <= 'CurrrntDate' and
finishproductid not in
(
select
a.finishproductid
from
tblt_invoiceorderitems a, tblm_invoiceorder b
where
b.invoiceorderdate <= 'CurrrntDate' and
a.invoiceorderid = b.invoiceorderid
);
今、その時間
SQLのコードブロックを使用してください。 – robert