I have a problem. I have two different tables. One that contains user information, and their ID numbers and another table that also has ID numbers and a second column that says whether the User is an admin or not.
Table 1
UserID AssigID Score Date Time
14532 23956 52 11.11.2017 401
12254 23956 22 18.11.2017 256
12644 23956 74 17.12.2012 365
11257 23957 45 10.10.2012 102
12667 23958 25 10.11.2012 109
Table 2
UserID Admin
14532 TRUE
12254 FALSE
12644 FALSE
11257 FALSE
12667 FALSE
As in table 2 userID 14532 is an admin, I would like to delete the data of this user from the table1. How to delete in table 1 the row where user is an Admin, based on the data from the Table 2?
As