I have two tables and I would like to delete records from one based on associated values in another. For example, using the example tables below, how would I delete all the records in the TIDS table that had an associative value of 'Air Force' in the TID_ADMIN table?
TID_ADMIN
--------------------
ID | Service
--------------------
1 Army
2 Navy
3 Air Force
TIDS
--------------------------------------
ID | ADMIN_ID | Project Name
--------------------------------------
1 1 Project X
2 1 Project Y
3 2 Vision C
4 3 Clearout T
5 3 Clearout F
6 3 Trustee 433
TID_ADMIN
--------------------
ID | Service
--------------------
1 Army
2 Navy
3 Air Force
TIDS
--------------------------------------
ID | ADMIN_ID | Project Name
--------------------------------------
1 1 Project X
2 1 Project Y
3 2 Vision C
4 3 Clearout T
5 3 Clearout F
6 3 Trustee 433