PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment puis-je tester si une colonne existe dans une table à l'aide d'une instruction SQL

Essayez ceci :

SELECT column_name 
FROM information_schema.columns 
WHERE table_name='your_table' and column_name='your_column';