Hi all
wondering if anybody could spot anything wrong with this SQL DELETE
statement, both my Access and SQL skills are not what they used to be
so i reckon its something simple, any suggestions appreciated.
-----
DELETE dbo_SUMBill_New .*, dbo_SUMBill_New .BillAccountNum ber,
dbo_SUMBill_New .POBReference
FROM a INNER JOIN dbo_SUMBill_New ON a.POBReference =
dbo_SUMBill_New .POBReference
WHERE (((dbo_SUMBill_ New.BillAccount Number)=[a].[BillAccountNumb er])
AND ((dbo_SUMBill_N ew.POBReference )=[a].[POBReference]));
-----
Regards, Alan Aylett
wondering if anybody could spot anything wrong with this SQL DELETE
statement, both my Access and SQL skills are not what they used to be
so i reckon its something simple, any suggestions appreciated.
-----
DELETE dbo_SUMBill_New .*, dbo_SUMBill_New .BillAccountNum ber,
dbo_SUMBill_New .POBReference
FROM a INNER JOIN dbo_SUMBill_New ON a.POBReference =
dbo_SUMBill_New .POBReference
WHERE (((dbo_SUMBill_ New.BillAccount Number)=[a].[BillAccountNumb er])
AND ((dbo_SUMBill_N ew.POBReference )=[a].[POBReference]));
-----
Regards, Alan Aylett
Comment