We are trying to do select count(*) and select * from the same table.
We have executed the following:
when we execute
but when we execute
the result is..
two records selected.
what could possibly cause this discrepancy?
We have executed the following:
when we execute
Code:
SELECT COUNT(*) FROM TABLE1; the result is 0
Code:
SELECT * FROM TABLE1;
Code:
COLUMN1 COLUMN2 1 A 2 B
what could possibly cause this discrepancy?
Comment