schematic
schematic copied to clipboard
is the possible to generate sql like TableA join TableB on TableA.keyB = TableB.key
I found that in in @InexactContentUri, there is a join attribute but not sure how to use it. I would like to generate a content uri that joins two tables on t1.foreign_key_of_t2 = t2.primiary_key
WeatherTable INNER JOIN LocationTable
ON WeatherTable.LOC_KEY = LocationTable._id
and '_id' are in both tables so I have to write tableName.columnName