All Tags »
sql query »
Matching column names
Sorry, but there are no more tags available to filter with.
-
I have been trying this for long time. I want to match the column names in query. It should match only the column name and should not match table name prefix and it should match alias name if it has any.
Consider the ex:
SELECT COL1,A.COL2, B.COL3 ALIAS1, COL4 ALIS2
FROM TABL A, TABL2 B
In this it should match COL1, COL2, ALIS1 and ...