Answer Posted / ajeet
database is the collection of related and coherent data...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can pl sql procedure have a return statement?
What is a table?
What is the starting oracle error number? What is meant by forward declaration in functions?
How to return an array from java to pl/sql?
How do you define a foreign key?
Explain sql data types?
What is procedure and function in sql?
what does myisamchk do? : Sql dba
what is the command used to fetch first 5 characters of the string? : Sql dba
How we can update the view?
What are different functions in sql?
Can a trigger call a stored procedure?
Why do you partition data?
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
Can we join two tables without common column?