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 a pl/sql block?
what does it mean to have quoted_identifier on? What are the implications of having it off? : Sql dba
What is a constraint?
How can we find duplicate records in a table?
What is using in sql?
What is nested table in pl sql?
What is sql in oracle?
Is progress software supports to ( pl/sql )?
what is the use of set statement in tsql? : Transact sql
What is sql not null constraint?
List the different type of joins?
what is the difference between undefined value and null value? : Sql dba
What is the use of stored procedures?
Can we create table inside stored procedure?
What is the use of <> sql?