100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4,6 TrustPilot
logo-home
Other

Common Database Operations: CRUD and Beyond

Rating
-
Sold
-
Pages
7
Uploaded on
29-01-2025
Written in
2024/2025

This document explains common database operations, including CRUD (Create, Read, Update, Delete), and other essential tasks like indexing and joins. It covers how these operations are used to manage and manipulate data in both relational and NoSQL databases.

Show more Read less
Institution
Course

Content preview

Common Database Operations
Database operations can be broadly categorized into two main groups: Data
Definition Operations and Data Manipulation Operations. Let’s break them
down:



1. Data Definition Operations
These operations define and modify the structure of the database. They include:

a. CREATE

 The CREATE operation is used to define a new database object, such as a
table, view, index, or database itself.
 SQL Example:

CREATE TABLE Employees (
ID INT PRIMARY KEY,
Name VARCHAR(100),
Age INT,
Department VARCHAR(50)
);

b. ALTER

 The ALTER command modifies an existing database object, such as adding,
deleting, or modifying columns in a table.
 SQL Example:

ALTER TABLE Employees ADD COLUMN Salary DECIMAL(10, 2);

c. DROP

 The DROP operation removes a database object, such as a table, index, or
view, and permanently deletes its data.
 SQL Example:

, DROP TABLE Employees;

d. TRUNCATE

 The TRUNCATE operation removes all rows from a table but does not
remove the table structure itself. It is faster than DELETE as it does not log
individual row deletions.
 SQL Example:

TRUNCATE TABLE Employees;


2. Data Manipulation Operations
These operations deal with the actual data inside the database and include:

a. SELECT

 The SELECT statement is used to retrieve data from one or more tables.
 SQL Example:

SELECT Name, Age FROM Employees WHERE Department = 'HR';

b. INSERT

 The INSERT operation adds new records (rows) into a table.
 SQL Example:

INSERT INTO Employees (ID, Name, Age, Department)
VALUES (1, 'Alice', 30, 'HR');

c. UPDATE

 The UPDATE operation modifies existing records in a table.
 SQL Example:

UPDATE Employees
SET Age = 31
WHERE ID = 1;

Written for

Institution
Course

Document information

Uploaded on
January 29, 2025
Number of pages
7
Written in
2024/2025
Type
Other
Person
Unknown

Subjects

R91,35
Get access to the full document:

100% satisfaction guarantee
Immediately available after payment
Both online and in PDF
No strings attached

Get to know the seller
Seller avatar
rileyclover179

Document also available in package deal

Get to know the seller

Seller avatar
rileyclover179 US
Follow You need to be logged in order to follow users or courses
Sold
0
Member since
1 year
Number of followers
0
Documents
252
Last sold
-

0,0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their exams and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can immediately select a different document that better matches what you need.

Pay how you prefer, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card or EFT and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions