Answers for "delete relation sql"

SQL
0

sql delete from with relation

# your select statement acctually works (and I don't know wich is your statement...).
# You must replace only
SELECT ...
# with
DELETE [table name or alias]
# and leave everything else the same.

# e.g:
DELETE cu FROM CustomUser cu 
left join RoleMapping on cu.id = RoleMapping.principalId 
WHERE RoleMapping.roleId = 1;
Posted by: Guest on August-02-2021
0

sql server drop relation

ALTER TABLE Persons

DROP CONSTRAINT UC_Person;
Posted by: Guest on July-21-2021

Code answers related to "delete relation sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language