Kermit Mei wrote:
> How can I do it in only one sql command? I wrote it like this, but it
> can't run:
> sqlite> SELECT ZGroupItem.ZPhDevId HomeDev.text FROM ZGroupItem
> ...> INNER JOIN ZPhDev ON ZGroupItem.ZPhDevId = ZPhDev.id
> ...> WHERE ZGroupItem.groupId = 1;
> SQL error: near ".": syntax error
>
> How to solve it?
Well, for starters you need to add a comma between the 2 items you have between
SELECT and FROM. Simple syntax error.
SELECT ZGroupItem.ZPhDevId, HomeDev.text
FROM ZGroupItem
INNER JOIN ZPhDev ON ZGroupItem.ZPhDevId = ZPhDev.id
WHERE ZGroupItem.groupId = 1;
-- Darren Duncan
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users