schematic icon indicating copy to clipboard operation
schematic copied to clipboard

is the possible to generate sql like TableA join TableB on TableA.keyB = TableB.key

Open WalkerWalker opened this issue 8 years ago • 0 comments

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

WalkerWalker avatar Oct 31 '16 09:10 WalkerWalker