I have two tables :
COuntry,city
I want all the cities in each country.Question on Cross Join.
Answer Posted / u.radha
SELECT COUNTRY.COUNTRY_NAME,CITY.CITY_NAME FROM COUNTRY,CITY
WHERE COUNTRY.COUNTRY_NAME = CITY.COUNTRY_NAME ;
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What are the different types of database objects?
How to get a list of all background sessions in the database?
How to connect to a remote server?
How to invoke the original export import utilities?
How to use an explicit cursor without open statements?
How to turn on or off recycle bin for the session?
What is a user role in oracle?
What is an oracle tablespace?
What is an Oracle index?
what is the difference between substr and instr function in oracle?
How to start instance with a minimal initialization parameter file?
What is Java Pool in Oracle?
How to create a table index?
What happens if variable names collide with table/column names?
what is the dual table in oracle?