Friday, 16 March 2018

How To Delete Duplicate Rows In SQL?

Step 1:
Create database LearningPoint92;
Step 2:
use LearningPoint92;
step 3:
create table Emp (id int not null,name varchar(20),address varchar(24) not null,salary int not null);
step 4:
select * from Emp;
step 5:
insert into Emp(id,name,address,salary)values(101,'suryosnata','pune',35000);
insert into Emp(id,name,address,salary)values(101,'suryosnata','pune',35000);
insert into Emp(id,name,address,salary)values(101,'suryosnata','pune',35000);
insert into Emp(id,name,address,salary)values(102,'dipak','nigdi',45000);
insert into Emp(id,name,address,salary)values(102,'dipak','nigdi',45000);
insert into Emp(id,name,address,salary)values(102,'dipak','nigdi',45000);
step 6:
WITH emp1 as
(
select *,ROW_NUMBER() over (PARTITION by id order by id) as rownumber from Emp
)
Step 7:
delete from emp1 where rownumber>1
step 8:
select * from Emp;




1 comment:

  1. Python is an open-source, high level, interpreted programming language which offers great opportunities for object-oriented programming. Choosing a python training program from Red Prism Group, which is best training institute for python in noida.

    ReplyDelete

Global Infrastructure and its components in AWS

You may operate your workloads wherever and however you choose with the AWS Global Infrastructure, and you'll use the same network, cont...