moishinetzer
New member
- Local time
- Today, 14:42
- Joined
- Mar 17, 2016
- Messages
- 2
I am making a delete query that i want to only delete certain fieds (more explained below)
Table1
Table2
i want to delete all records in Table2 where Data in Table1 is 3
One other thing i dont want to use SQL... only in-built access functions
My problem is, when i add all the tables it doesnt know which table i want to delete all the records from as i have two fields from two tables joined together in one query as to compare them (Data)
How can i do this just with access' functions/options?
Table1
PHP:
OneID ¦ Data
1 ¦ 3
2 ¦ 5
PHP:
OneID ¦ Random
1 ¦ 25
2 ¦ 29
One other thing i dont want to use SQL... only in-built access functions
My problem is, when i add all the tables it doesnt know which table i want to delete all the records from as i have two fields from two tables joined together in one query as to compare them (Data)
How can i do this just with access' functions/options?