I need to write a sql script which loop through multiple records from two different tables joined with foreign key into cursor.
The data to be selected/deleted are known so that can be entered in a script.
For exaMPLE
Table A
| Emp_Id | Name |
| 1 | abc |
| 2 | Xyz |
| 3 | pqr |
Table B
| Comp_id | Name | Emp_id |
| 10 | A | 1 |
| 20 | B | 2 |
| 30 | C | 3 |
I want to select/delete Emp_Id 1 and 3 from both the tables using sql script