摘要:
delete from PWLP_CASE_PENALTY pcp where pcp.case_id in (SELECT case_id FROM PWLP_CASE_PENALTY PWLPgroup by pwlp.case_id having count(1)>1) and pcp.row 阅读全文
摘要:
Create table If Not Exists Employee (Id int, Name varchar(255), Salary int, DepartmentId int) Create table If Not Exists Department (Id int, Name varchar(255)) Truncate table Employee insert into Emp... 阅读全文