Hi,
I am just trying to understand the basics of query building so that I can start off with it.
I just need help on following two queries as to how to write the same in llblgen so that I can start building complex queries
-
SELECT SYSDATE FROM DUAL // no tables are invovled here
-
SELECT COUNTRY.COUNTRYDESCRIPTION, STATE.STATEDESCRIPTION
FROM COUNTRY, STATE
WHERE (COUNTRY.COUNTRY_ID = STATE.COUNTRY_ID)
// two tables are involved here
I just want to understand how to write and execute these in LLBLGEN