Hello,
It seems an easy thing, but it is not working.
I tried:
sql_string = "select * form club"
&sql_string into cursor myClubs
but this give's an error........
And I've tried this:
emp_cust_sql = "SELECT employee.emp_id, ;
customer.cust_id, customer.emp_id, ;
customer.contact, customer.company ;
FROM employee, customer ;
WHERE employee.emp_id = customer.emp_id"
CREATE CURSOR emp_cust_cursor AS &emp_cust
but this give's an error........
So, how should it be done?
Thanks Charl
It seems an easy thing, but it is not working.
I tried:
sql_string = "select * form club"
&sql_string into cursor myClubs
but this give's an error........
And I've tried this:
emp_cust_sql = "SELECT employee.emp_id, ;
customer.cust_id, customer.emp_id, ;
customer.contact, customer.company ;
FROM employee, customer ;
WHERE employee.emp_id = customer.emp_id"
CREATE CURSOR emp_cust_cursor AS &emp_cust
but this give's an error........
So, how should it be done?
Thanks Charl