DDL Command

create command

create command create is a DDL command used to create a table or a database. Creating a Database To create a database in RDBMS, create command is uses. Following is the Syntax, create database database-name; Example for Creating Database create database Test; The above command will create a database named Test. Creating a Table create …

create command Read More »

alter command

alter command alter command is used for alteration of table structures. There are various uses of alter command, such as, to add a column to existing table to rename any existing column to change datatype of any column or to modify its size. alter is also used to drop a column. To Add Column to …

alter command Read More »