Hello,
I need to find out all of the tables that any sql statement is dealing with.
So:
Select * from Person
Would return "Person"
I would also like:
SELECT column_name(s)
FROM table1
INNER JOIN table2
ON table1.column_name=table2.column_name;
Would Return: table1, table2
Any suggestions.
I'm using c#
Thanks,
d3