I have two tables :
COuntry,city
I want all the cities in each country.Question on Cross Join.
Answer Posted / saiki
SELECT COUNTRY.COUNTRY_NAME,CITY.CITY_NAME
FROM COUNTRY,CITY
WHERE COUNTRY.COUNTRY_NAME = CITY.COUNTRY_NAME
GROUP BY COUNTRY.COUNTRY_NAME;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what are clusters?
How to drop a stored function?
How do I connect to oracle?
How to define an anonymous procedure with variables?
What happens if variable names collide with table/column names?
How do I manually uninstall oracle client?
How to see free space of each tablespace?
Is oracle a programming language?
Can we create database in oracle using command line ?
What is an oracle table?
What view(s) do you use to associate a users SQLPLUS session with his o/s process?
How to call a stored function with parameters?
How to list all indexes in your schema?
How to rename a tablespace in oracle?
What is MTTR advisor in Oracle?