Android Question sIMPLE sql QUERY does not work

Smee

Well-Known Member
Licensed User
Longtime User
Oops spotted mistake
How do i delete this post?
 
Last edited:

eurojam

Well-Known Member
Licensed User
Longtime User
You have something like this (Joining table1 to table1):
B4X:
SELECT ... FROM table1 LEFT JOIN table1 ON ...
but it should be
B4X:
SELECT ... FROM table1 LEFT JOIN table2 ON ...
 
Upvote 0

Smee

Well-Known Member
Licensed User
Longtime User
You are correct of course :). I tried to remove the post but you were too quick. Many thanks for the rely, especially so quick.

Cheers
 
Upvote 0
Top