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
How to process query result in pl/sql?
What is the source code of a program?
What does 0 mean in sql?
How much does sqlite cost?
What is the difference between functions, procedures, and packages in pl/sql?
what is 'mysqladmin' in mysql? : Sql dba
Is join and inner join the same?
Explain the advantages and disadvantages of stored procedure?
Can function return multiple values in sql?
What is full form of rtm?
How to display the current date in sql?
What are the advantages of sql?
What are the different parts of a package?
what are aggregate and scalar functions? : Sql dba
column A column b | output 10 7 | 10 5 8 | 8 7 -9 | 7 3 5 | 5 0 6 | 6 Write a sql query to print such output.