Hello (please help
What I need is to connect the following 2 queries into one,
but I need to display even those records that have a FILE_COUNT
bigger then 0. For some reason it displays records only with
FILE_COUNT > then 1.
SELECT TABLE_CATE.ID, TABLE_CATE.fldNAME, COUNT(TABLE_FILE.ID) AS FILE_COUNT
FROM TABLE_CATE, TABLE_FILE
WHERE TABLE_FILEfldCATE_ID = TABLE_CATE.ID
ORDER BY TABLE_CATE.fldORDER ASC
Thanks for your time !
What I need is to connect the following 2 queries into one,
but I need to display even those records that have a FILE_COUNT
bigger then 0. For some reason it displays records only with
FILE_COUNT > then 1.
SELECT TABLE_CATE.ID, TABLE_CATE.fldNAME, COUNT(TABLE_FILE.ID) AS FILE_COUNT
FROM TABLE_CATE, TABLE_FILE
WHERE TABLE_FILEfldCATE_ID = TABLE_CATE.ID
ORDER BY TABLE_CATE.fldORDER ASC
Thanks for your time !