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


Please Help Members By Posting Answers For Below Questions

What is prepared statement in sql?

541


How do I view output in sql developer?

567


Can we insert data in view?

497


Is not equal in sql?

560


what are the advantages of using stored procedures? : Sql dba

609






What is the most common sql injection tool?

538


What is the use of triggers?

536


what is a scheduled jobs or what is a scheduled tasks? : Sql dba

545


What's the procedure?

484


What is trigger in flip flop?

512


what is 'mysqlshow'? : Sql dba

572


Lookups are a key component in sql server integration services (ssis). Explain its purpose?

529


What is sql keyword?

549


how to convert numeric values to character strings? : Sql dba

564


Explain what is table in a database?

569