DEV Community

Jeevachaithanyan Sivanandan
Jeevachaithanyan Sivanandan

Posted on

how to list the column names in a particular table using postgresql command line

how to list the column names in a particular table using postgresql command line


SELECT column_name
FROM information_schema.columns
WHERE table_name = 'account_account';
Enter fullscreen mode Exit fullscreen mode

Top comments (0)