Skip to content

Instantly share code, notes, and snippets.

View oscdeveloper's full-sized avatar

Arkadiusz Krakiewicz - OSC Developer oscdeveloper

View GitHub Profile
@davidwaterston
davidwaterston / gist:3755420
Created September 20, 2012 11:39
Oracle: Check if a column exists in a table
select column_name as found
from user_tab_cols
where table_name = '__TABLE_NAME__'
and column_name = '__COLUMN_NAME__'