On 20 Aug 2012, at 10:18am, Bishwa Shrestha <[email protected]> wrote:

> Is there a way to get the table names that were referenced in the query 
> itself?

I don't think so.  Consider that you might do things like

SELECT 1,2,3;
SELECT (a.column1 + b.column1) FROM table1 AS a, table2 AS b;

so it's quite possible that values returned aren't from any table at all.

Simon.
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to