Find All Tables for a Particular Field name in Oracle

SELECT TABLE_NAME
FROM USER_TAB_COLUMNS
WHERE UPPER(COLUMN_NAME)
LIKE '%FRANCE%';

Comments

Popular posts from this blog

SQL SERVER – TRIM() Function – UDF TRIM()

Delete duplicate records from a Table in SQL Server