1

I would like to delete this one in the db visualizer and not sure if I am writing the correct syntax:

enter image description here

I also see that the idsapusertype 25 is also linked to idsapusertypedetails 75 and 76. Can I use this one?

delete from sap_user_type_details where idsapusertypedetails = 77

or

delete from sap_user_type_details where idsapusertype = 25
Gareth
  • 18,809
tintincutes
  • 1,237

1 Answers1

2

It should be delete from sap_user_type_details where idsapusertypedetails = 77 since idsapusertype = 25 condition matches other records.

For best results, delete from sap_user_type_details where idsapusertypedetails = 77 and idsapusertype = 25