↧
Re: Table with Memo field
↧
Select t1.Id, t1.Desc, t2.Name1, t2.Name2 ;from Table1 t1, Table2 t2 ; where t1.Id=t2.Id ; and not DELETED() ; into cursorQuery
I have found if I run the following before to run the query then I get the right cursor just the first time:
SELECT Table1
GO BOTTOM
GO TOP
Please, what is wrong?
Thank you very much