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
Answer Posted / 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 View All Answers
What is anonymous block in sql?
What are the constraints available in sql?
What is the best sql course?
what are the authentication modes in sql server? How can it be changed? : Sql dba
What is self-join and what is the requirement of self-join?
how to convert dates to character strings? : Sql dba
explain access control lists. : Sql dba
What is serial sql?
What is pl sql in oracle?
What is difference between procedure and trigger?
Is a secondary key the same as a foreign key?
Can we use join in subquery?
What is sql table?
Can we use commit inside a trigger?
What is primary key and foreign key?