Hi,
I got the SQL
That does not work.
I tried this way:
but when I save it, it automatically changed into the first SQL. How can I prevent that?
Or what is the correct way to do it?
I got the SQL
Code:
SELECT TblCustOrder.PONumber, TblCustOrderUnit.OrderMethod
FROM TblCustOrder INNER JOIN TblCustOrderUnit ON TblCustOrder.CustOrderID = TblCustOrderUnit.OrderID
[highlight #FCE94F]WHERE (((TblCustOrderUnit.OrderMethod)="isnull"));[/highlight]
That does not work.
I tried this way:
Code:
SELECT TblCustOrder.PONumber, TblCustOrderUnit.OrderMethod
FROM TblCustOrder INNER JOIN TblCustOrderUnit ON TblCustOrder.CustOrderID = TblCustOrderUnit.OrderID
[highlight #8AE234]WHERE IsNull(TblCustOrderUnit.OrderMethod);[/highlight]
Or what is the correct way to do it?