Create a new PostgreSQL database
Create a new PostgreSQL user
Create a new PostgreSQL table
Create a new PostgreSQL index
CREATE INDEX indexname ON tablename (columnname);
Creates a new index on the specified column.
Create index on email column
CREATE INDEX idx_users_email ON users (email);
Delete a PostgreSQL index
Create a new PostgreSQL view
Create a new PostgreSQL function