Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to find all field XYZ in all tables
Message
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Divers
Thread ID:
00952792
Message ID:
00952816
Vues:
10
This message has been marked as the solution to the initial question of the thread.
>Is there a command that would tell you which tables have a field/column name "XYZ" or which field names contain "XYZ"?
>
You can use INFORMATION_SCHEMA.
SELECT * FROM pubs.INFORMATION_SCHEMA.COLUMNS
	WHERE column_name LIKE '%id%'
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform