// show all records CR8 with oracle 8 db
// here is my attempt
// to show all records available
// and if a record appears within the second table then
// show the count that is in the specified field.
// else a "0" Numerical number should show
// in front of the reporting Form_File_Name field.
if {V_FORM_NAME.FORM_FILE_NAME} = {V_FORM_COUNT.FORM_FILE_NAME}
then {V_FORM_COUNT.NUM_USED}
else "0"
// this will not return the {V_FORM_NAME.FORM_FILE_NAME}
// that does not appear in {V_FORM_COUNT} table.
Please help with possible solution.
// here is my attempt
// to show all records available
// and if a record appears within the second table then
// show the count that is in the specified field.
// else a "0" Numerical number should show
// in front of the reporting Form_File_Name field.
if {V_FORM_NAME.FORM_FILE_NAME} = {V_FORM_COUNT.FORM_FILE_NAME}
then {V_FORM_COUNT.NUM_USED}
else "0"
// this will not return the {V_FORM_NAME.FORM_FILE_NAME}
// that does not appear in {V_FORM_COUNT} table.
Please help with possible solution.