All Tags »
regular express... »
sql
Sorry, but there are no more tags available to filter with.
-
I need a regex to pull out the table names from sql statements in jpl files. These are just text files. A simple example is:
sql select last_name, first_name, id from table_a
but this can also be like:
sql select a.last_name, b.first_name, a.id from table_a a, table_b b where a.id = b.id order by a.id
In this case I would need to pull out ...