Answers

Question and Answer:

  Home  SQL Plus

⟩ Explain How do we eliminate the duplicate rows?

Use the DISTINCT keyword right after SELECT...

i.e. SELECT DISTINCT customername FROM customer

select * from emp e where rownum=

(select max(rownum) from emp ee

where e.empno=ee.empno)

 142 views

More Questions for you: