SQL

NOT NULL Constraint in Oracle

NOT NULL Constraint in Oracle Constraints in Oracle Constraints allows Oracle to set some rule… Read More

TRUNCATE Table Statement

TRUNCATE Table Statement TRUNCATE table statement is used to remove all the records permanently.Its a… Read More

DROP Table Statement in Oracle

DROP Table Statement in Oracle DROP statement is used to do below operations: DROP ONE… Read More

MODIFY Table Statement in Oracle

MODIFY Table Statement in Oracle MODIFY statement is used to do below operations: MODIFY ONE… Read More

ALTER Table Statement in Oracle

ALTER Table Statement in Oracle ALTER statement is used to do below operations: ADD ONE… Read More

CREATE Statement in Oracle

CREATE Statement in Oracle CREATE statement is used to create a new database object. Its… Read More

Updating data in Oracle

Updating data in Oracle Update operation is used to modify data in oracle. Types of… Read More

Multiple Table Insert in Oracle

Multiple Table Insert in Oracle INSERT INTO..SELECT statement can be used to insert data into… Read More

Insert operation in Oracle

Insert operation in Oracle Insert is a DML operation. Usually Insert means when we add… Read More

Subqueries in Oracle

Subqueries in Oracle Subqueries are select statements which are part of main select statement. Subqueries… Read More