how to delete duplicate rows from a join tables(I have three
tables on that join)
how do you know which join is need to be used?

The select statement I have is:

SELECT gc_skill_type.skill_type,
gc_area_tec.area,
gc_technology.technology,
gc_technology.id_technology,
gc_area_tec.id_area_tec
FROM gc_skill_type,
gc_area_tec,
gc_technology
WHERE gc_area_tec.id_skill_type (+) =
gc_skill_type.id_skill_type
AND gc_technology.id_area_tec (+) =
gc_area_tec.id_area_tec
order by gc_skill_type.skill_type asc, gc_area_tec.area asc,
gc_technology.technology asc



how to delete duplicate rows from a join tables(I have three tables on that join) how do you know ..

Answer / kumar

Seems to be an Inline View (Read Only). We cannot perform
dml operations on this query. Creating a complex with this
query may solve the issue.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What is partition in sql query?

0 Answers  


How can you know that statistics should be updated?

0 Answers  


How many LONG columns are allowed in a table?

6 Answers   CTS,


Can we use rowid as primary key?

0 Answers  


What is the primary key?

0 Answers  






How many types of triggers exist in pl/sql?

0 Answers  


How do you display "13th of November, 17 days left for month end" without hardcoding the date.

3 Answers  


What are local and global variables and their differences?

0 Answers  


What is string join?

0 Answers  


Mention what pl/sql package consists of?

0 Answers  


How much ram can sql express use?

0 Answers  


four procedures is are there should i write their in a package

2 Answers  


Categories