Created
September 6, 2025 01:13
-
-
Save rlcarrca/c23890bfc429f625aa2c584420f3b3a9 to your computer and use it in GitHub Desktop.
Querying the information_schema (Postgres/CloudSQL)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT column_name, data_type, character_maximum_length, is_nullable | |
FROM information_schema.columns | |
WHERE table_schema = 'public' AND table_name = 'platform_logs'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment