Here i am having 3 tables named t1, t2, t3
id    dept_name
201      CSE
202      ECE
203      IT
204      MECH
205      EEE
   **T1**
id   dept_per
201     50
202     60
203     70
204     80
205     80
  **T2**
id     dept_rank
 201     2
 202     4
 203     1
 204     5
 205     3
   **T3**
Here Id is the primary key and the T2 & T3 have its foriegn Key.Now i want to delete a single row in the table T3 but it is not allowing me to delete that row because of the foreign key. How can i delete that row without removing a foreign key.
