in reply to SQL Parsing
In general, this isn't possible from SQL alone -- you have to look at the database.
Given table foo containing columns (id, a, b) and table bar containing columns (id, c, d), what would you expect your program to return from this SQL?
What about this?SELECT a, b, c, d from foo, bar where foo.id = bar.id;
SELECT * from foo, bar where foo.id = bar.id;
Of course, your codebase may not contain these types of statement.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: SQL Parsing
by jZed (Prior) on Jul 10, 2007 at 17:21 UTC |