Hi All,
I am running below query in sql live .
select count(employee_id),
APPROX\_COUNT\_DISTINCT(last\_name||first\_name) ,
count(distinct last\_name||first\_name)
from hr.employees;

There are 107 records in the employee table from hr schema . But APPROX_COUNT_DISTINCT is returning 108 rows.
Is this a bug ?
