How To Use NOT NULL Constraint In SQL
thecodehubs

In this article, we will learn how to use the NOT NULL constraint in SQL.

A column can hold NULL values by default. The NOT NULL constraint is used to enforce a column to NOT accept NULL values.

How To Alter Table Using Query In SQL
thecodehubs

In this article, we will learn how to use the ALTER TABLE statement in SQL.

To add or delete or modify columns in an existing table, the ALTER TABLE statement is used.

The ALTER TABLE statement also can be used to add or drop various constraints on an existing table.

How To Use DENSE_RANK() Function In SQL
thecodehubs

In this article, we will learn how to use the DENSE_RANK() function with a SQL select query.

The DENSE_RANK() is a window function that returns a unique rank number for each distinct row within a partition of a result set, with no gaps in ranking values.

How To Use RANK() Function In SQL
thecodehubs

In this article, we will learn how to use the RANK() function with a SQL select query.

The RANK() is a window function that returns a unique rank number for each distinct row within a partition of a result set.

How To Use ROW_NUMBER() Function In SQL
thecodehubs

In this article, we will learn how to use ROW_NUMBER() function with a SQL select query.

The ROW_NUMBER() is a window function that returns a unique sequential integer for each row within a partition of a result set.

Subscribe

Select Categories