Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to join two tables in custom SQL In Qlikview , can anyone please help me how to join two tables and I don't want the preceding load, I want only custom SQL.
My data Base is Oracle not a SQL is it possible to do Custom sql in Qlikview.
Thanks,
Manoj
You can directly write the query in script editor.
Are you getting any error?
yes I'm getting an error. so can you please help me the exact syntax in qlikview to join two tables in custom sql
Share me the query, what error are you getting?
SQL SELECT COUNTRY, CITY_NAME, REGION
FROM Countries
LEFT JOIN Cities
ON countries = cities
SQL SELECT CITIES.COUNTRY, CITIES.CITY_NAME, REGION
FROM COUNTRIES
LEFT OUTER JOIN CITIES
ON CITIES.COUNTRY_ISO_CODE = COUNTRIES.COUNTRY_ISO_CODE
Try this once
SQL SELECT COUNTRY, CITY_NAME, REGION
FROM Countries a,Cities b
where
a.countries(+) = b.cities
You are missing alias in your SQL
SQL SELECT CITIES.COUNTRY, CITIES.CITY_NAME, REGION
FROM COUNTRIES COUNTRIES
LEFT OUTER JOIN CITIES CITES
ON CITIES.COUNTRY_ISO_CODE = COUNTRIES.COUNTRY_ISO_CODE
again im getting the same error
what kind of error are you getting??
can you post it??
also post document log of qvw.
Regards