I did substitute the actual literals into one of the selects
and that worked. The problem is that there are about 100 statements that I would have to modify each time. The academic year field is defined as varchar2(5) like 03-04.
The block number is defined as varchar2(1) like 5.
Could someone please look at this statement and see why my count is 0 when I know it actually is 1 ?
SELECT
COUNT(PRECEPTOR_SITE_EVAL."ENTHUSIASTIC")
FROM
"PRECEPTOR_SITE_EVAL" PRECEPTOR_SITE_EVAL
WHERE
PRECEPTOR_SITE_EVAL."ENTHUSIASTIC" = '3'
AND...
Could someone please look at this statement and see why my count is 0 when I know it actually is 1 ?
SELECT
COUNT(PRECEPTOR_SITE_EVAL."ENTHUSIASTIC")
FROM
"PRECEPTOR_SITE_EVAL" PRECEPTOR_SITE_EVAL
WHERE
PRECEPTOR_SITE_EVAL."ENTHUSIASTIC" = '3'
AND...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.