Hi
I am trying to read a database table into a table variable.
For example,
v_employee = select * from Employee where name = 'John';
Now, requirement is to obtain number of rows returned by the query into table variable v_employee. How to get this rowcount?
I triend using cursors but now getting correct result.