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
How to join two tables in a single query using oracle?
Explain joins in oracle?
What is hot backup and logical backup?
How to connect to oracle using service name instead of sid?
What is set operator oracle?
Explain the use of control file?
How to count groups returned with the group by clause in oracle?
master table and child table performances and comparisons in Oracle ?
How to define a procedure inside another procedure?
What is coalesce function?
How do you store pictures in a database?
How do you increase the OS limitation for open files (LINUX and/or Solaris)?
Can sub procedure/function be called recursively?
State all possible different index configurations a table can possibly have?
What is an oracle user account?