sql

CRUD operations in SQL

CRUD operations in SQL             CRUD is an acronym that stands for Create, Read, Update and Delete. Each letter in acronym refers to all functions executed in a database and mapped to standard HTTP method, SQL statement. CRUD is data-oriented and standardized use of HTTP action methods. This consists of four basic operations which we …

CRUD operations in SQL Read More »

Delete, Truncate and Drop Table in SQL

Let us understand the difference between delete truncate and drop table: Delete Truncate and Drop Table: Characteristics Delete Truncate Drop Command Type DML(Data Manipulation Language) DDL(Data Definition Language) DDL(Data Definition Language) Rollback transaction Can be rolled back Cannot be rolled back Cannot be rolled back Permanent delete Since it is DML does not remove records …

Delete, Truncate and Drop Table in SQL Read More »