Answer Posted / karthik
with [dup_cte] as {
select row_number(partition by eid order by eid) as rn from emp}
go
delete from [dup_cte] where rn>1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How does cross join work?
what is an execution plan? When would you use it? How would you view the execution plan? : Sql dba
Which is faster subquery or join?
when MSQL8.0 is in market
What are sql objects?
Explain what is a field in a database and record in a database?
how tsql statements can be written and submitted to the database engine? : Transact sql
Define overloaded procedure?
What are the types of operators available in sql?
How do I write a sql query in pgadmin 4?
How to return multiple rows from the stored procedure?
How do you optimize a stored procedure in sql?
What is cost in sql execution plan?
What is a composite primary key?
Can you join views in sql?