I'm always excited to take on new projects and collaborate with innovative minds.
contact@niteshsynergy.com
https://www.niteshsynergy.com/
SQL sub-languages you mentioned, including their respective commands and how they are used:
DDL is used to define and manage database structures such as tables, schemas, and indexes. These commands modify the structure of the database.
CREATE TABLE employees (
id INT PRIMARY KEY,
name VARCHAR(100),
age INT
);
ALTER: Modifies an existing database object, such as adding, deleting, or modifying columns in a table.
ALTER TABLE employees ADD COLUMN email VARCHAR(100);
DROP: Deletes an existing database object (e.g., table, view).
DROP TABLE employees;
TRUNCATE: Removes all rows from a table, but retains the table structure for future use.
TRUNCATE TABLE employees;
RENAME (Oracle 9i): Used to rename an existing database object such as a table or column.
RENAME employees TO staff;
DML is used to manipulate data in existing tables. These commands deal with the insertion, update, deletion, and merging of data.
INSERT INTO employees (id, name, age) VALUES (1, 'John Doe', 30);
UPDATE: Modifies existing records in a table.
UPDATE employees SET age = 31 WHERE id = 1;
DELETE: Removes records from a table.
DELETE FROM employees WHERE id = 1;
MERGE (Oracle 9i): A combination of INSERT, UPDATE, and DELETE used to merge data into a table. It's often used for upserting (inserting or updating).
MERGE INTO employees e
USING new_employees ne
ON (e.id = ne.id)
WHEN MATCHED THEN
UPDATE SET e.name = ne.name, e.age = ne.age
WHEN NOT MATCHED THEN
INSERT (id, name, age) VALUES (ne.id, ne.name, ne.age);
DQL is used for querying the database to retrieve data. The most common command is SELECT.
SELECT name, age FROM employees WHERE age > 30;
TCL is used to manage transactions in the database. These commands ensure that all the operations within a transaction are completed successfully or rolled back if there’s an error, maintaining data consistency.
COMMIT;
ROLLBACK: Rolls back the current transaction, undoing any changes made.
ROLLBACK;
SAVEPOINT: Sets a savepoint within a transaction to which you can later roll back if needed.
SAVEPOINT savepoint_name;
DCL is used to control access to data and database objects. These commands manage user permissions.
GRANT SELECT, INSERT ON employees TO user1;
REVOKE: Removes a user's privileges to perform certain actions on a database object.
REVOKE INSERT ON employees FROM user1;