SQL

CREATE PROCEDURE

SQL CREATE PROCEDURE Keyword The CREATE PROCEDURE command is used to define a stored procedure. A stored procedure is a […]

SQL

CREATE TABLE

SQL CREATE TABLE Keyword The CREATE TABLE command is used to create a new table in the database. You define

SQL

CREATE OR REPLACE VIEW

SQL CREATE OR REPLACE VIEW Keyword The CREATE OR REPLACE VIEW command is used in some SQL databases to update

SQL

CREATE INDEX

SQL CREATE INDEX Keyword The CREATE INDEX command is used to create indexes on columns in a table. Indexes make

SQL

CREATE DATABASE

SQL CREATE DATABASE Keyword The CREATE DATABASE command is used to create a new database in SQL. This allows you

SQL

CREATE

SQL CREATE Keyword The CREATE keyword is used in SQL to define new objects in the database such as databases

SQL

CONSTRAINT

SQL CONSTRAINT Keyword The CONSTRAINT keyword is used to define rules that restrict the type of data that can be

SQL

COLUMN

SQL COLUMN Keyword The COLUMN keyword is used with ALTER TABLE to modify the structure of an existing table. This

SQL

CHECK

SQL CHECK Keyword The CHECK constraint is used in SQL to limit the values that can be inserted into a

SQL

CASE

SQL CASE Keyword The CASE keyword in SQL is used to create conditional logic in a query. It allows you

Scroll to Top