sysadmin07
IS-IT--Management
Hi,
I'm trying to delete multiple rows from an Access database. I'm having trouble figuring out how to call entries that are differentiated by -1, -2, -3, etc. (outlined below under the "Name" heading). How would I go about deleting the John-1, John-2, and John-3 rows? FYI, this is a rather large database and I've listed a few test entries below, so please don't question the logic of its structure:
Name Job Description
John-1 Clerical
John-2 Reception Desk
Mary-1 Custodial
John-3 Accounting
Here's the start of my delete code:
<CFQUERY NAME="deleteItem" DATASOURCE="test">
DELETE * FROM tableJobs
WHERE name='#????????#';
</CFQUERY>
Thank you
I'm trying to delete multiple rows from an Access database. I'm having trouble figuring out how to call entries that are differentiated by -1, -2, -3, etc. (outlined below under the "Name" heading). How would I go about deleting the John-1, John-2, and John-3 rows? FYI, this is a rather large database and I've listed a few test entries below, so please don't question the logic of its structure:
Name Job Description
John-1 Clerical
John-2 Reception Desk
Mary-1 Custodial
John-3 Accounting
Here's the start of my delete code:
<CFQUERY NAME="deleteItem" DATASOURCE="test">
DELETE * FROM tableJobs
WHERE name='#????????#';
</CFQUERY>
Thank you