Question

Can any one tell me what's wrong with the following SQLite statement?

"SELECT * FROM PEOPLE FULL JOIN PLACES ON PEOPLE.Id = EVENTS.eventFbId WHERE PLACES.Id = '3211343'"

It's throwing an undefined error

Was it helpful?

Solution

  1. EVENTS is undefined!
  2. SQLite doesn't support FULL JOINs.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top