I\'m trying to learn how to use an sqlite database in a java program. (not Android). I went to this link, download the jdbc library and copied the example. The example worked wi
You should define alias for table name as below
select pc.name, ps.name from purchase as pc inner join person as ps on ps.id = pc.id