HI,
I am trying to read a database table e.g. Employee in the table variable v_employee.
v_employee = select * from Employee where Name = 'John';
Now, I wish to know the number of rows in the table variable v_employee. How to achieve this?
I tried using Cursors but not getting correct result.