You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does this .NET VFP Client support Join Expressions? I tried JOIN, INNER JOIN, LEFT JOIN, etc., and couldn't get any of them to work. I get a fairly generic error message about the provider not supporting or recognizing something in my SQL.
My tables are not free tables, they are part of a database, but they do not have primary keys. It's not a database I can modify. I'm integrating with another companies software.
I can do pseudo joins using:
SELECT field1, field2
FROM table1, table2
WHERE table1.ID = table2.ForeignKey
But I'd rather be able to use joins if I can.
The text was updated successfully, but these errors were encountered:
Does this .NET VFP Client support Join Expressions? I tried JOIN, INNER JOIN, LEFT JOIN, etc., and couldn't get any of them to work. I get a fairly generic error message about the provider not supporting or recognizing something in my SQL.
My tables are not free tables, they are part of a database, but they do not have primary keys. It's not a database I can modify. I'm integrating with another companies software.
I can do pseudo joins using:
SELECT field1, field2
FROM table1, table2
WHERE table1.ID = table2.ForeignKey
But I'd rather be able to use joins if I can.
The text was updated successfully, but these errors were encountered: