The following works
SELECT patient_episodes.file_num , patient_episodes.title , patient_episodes.last_name FROM patient_episodes INTO CURSOR temp1 wHERE file_num = x
So I want to label the columns.... and yet this doesn't work
SELECT patient_episodes.file_num AS File Num, patient_episodes.title , patient_episodes.last_name FROM patient_episodes INTO CURSOR temp1 wHERE file_num = x
I have tried with "" and [ ] ... no go (The below doesn't work)
SELECT patient_episodes.file_num AS "File Num", patient_episodes.title , patient_episodes.last_name FROM patient_episodes INTO CURSOR temp1 wHERE file_num = x
What am I doing wrong ???
JF
FoxEgg
SELECT patient_episodes.file_num , patient_episodes.title , patient_episodes.last_name FROM patient_episodes INTO CURSOR temp1 wHERE file_num = x
So I want to label the columns.... and yet this doesn't work
SELECT patient_episodes.file_num AS File Num, patient_episodes.title , patient_episodes.last_name FROM patient_episodes INTO CURSOR temp1 wHERE file_num = x
I have tried with "" and [ ] ... no go (The below doesn't work)
SELECT patient_episodes.file_num AS "File Num", patient_episodes.title , patient_episodes.last_name FROM patient_episodes INTO CURSOR temp1 wHERE file_num = x
What am I doing wrong ???
JF
FoxEgg