SQL

SQL ALTER TABLE statement

Jun 27,92

The ALTER TABLE statement is used to update database table definitions. For example, to add a column in a table, …

Read More

SQL DROP statement

Jun 26,92

The SQL DROP statement permanently removes database objects such as tables, views, or indexes. To drop a database, use the …

Read More

SQL Constraints

Jun 26,92

SQL Constraints are rules which regulates how database data is inserted or manipulated. They are usually used to prevent a user from storing …

Read More

SQL CREATE TABLE statement

Jun 26,92

The SQL CREATE TABLE statement is used to create tables. To create a table using this statement, you must specify the …

Read More

SQL CREATE DATABASE statement

Jun 26,92

Usually DBMSs include an administration tool that can be used to create, manage database and tables. Database can also be created with the SQL …

Read More

SQL UNION operator

Jun 25,92

The SQL UNION operator is used to combine multiple SELECT statements into one result set. The syntax: SELECT column_name FROM …

Read More
Geek University 2022