sql

PostgreSQL Tutorial: REVOKE

Summary: In this tutorial, you will learn about the PostgreSQL REVOKE statement to remove privileges from a role.

Continue reading

PostgreSQL Tutorial: CTE

Summary: in this tutorial, you will learn how to use the PostgreSQL CTE (common table expressions) to simplify complex queries.

Continue reading

PostgreSQL Tutorial: ALTER ROLE

Summary: In this tutorial, you will learn how to use the PostgreSQL ALTER ROLE statement to modify the attributes of a role, rename a role, and change a role’s session default for a configuration variable.

Continue reading

PostgreSQL Tutorial: ALTER SCHEMA

Summary: In this tutorial, you will learn how to use the PostgreSQL ALTER SCHEMA statement to modify the definition of a schema.

Continue reading

PostgreSQL Tutorial: CREATE SCHEMA

Summary: In this tutorial, you will learn how to use the PostgreSQL CREATE SCHEMA statement to create a new schema in a database.

Continue reading

PostgreSQL Tutorial: DROP ROLE

Summary: In this tutorial, you will learn how to use the PostgreSQL DROP ROLE statement to remove a role.

Continue reading

PostgreSQL Tutorial: DROP SCHEMA

Summary: In this tutorial, you will learn how to use the PostgreSQL DROP SCHEMA statement to delete a schema and its objects.

Continue reading

PostgreSQL Tutorial: Schema

Summary: In this tutorial, you will learn about PostgreSQL schema and how to use the schema search path to resolve objects in schemas.

Continue reading

PostgreSQL Tutorial: CASE

Summary: in this tutorial, you will learn how to use the PostgreSQL CASE conditional expression to form conditional queries.

Continue reading

PostgreSQL Tutorial: COALESCE

Summary: in this tutorial, you will learn about the PostgreSQL COALESCE function that returns the first non-null argument. You will learn how to apply this function in SELECT statement to handle null values effectively.

Continue reading