SQL

Create Database Usage in …

CREATE DATABASE statement is used to create a new database. 1-- syntax 2CREATE DATABASE …

Alter Table Usage in SQL

ALTER TABLE statement is used to add, delete or modify columns in an existing table. Alter Table Add …

Create Table Usage in SQL

CREATE TABLE statement is used to create a new table in a database. 1-- syntax 2-- datatype can be …

Delete Table Usage in SQL

DELETE statement is used to delete existing records in a table. 1DELETE FROM table_name 2WHERE …

Drop Database Usage in …

DROP DATABASE statement is used to drop an existing database. WARNING Be careful before dropping a …