Posts

Showing posts from September, 2025
Image
Database Security & Privacy in MySQL — A Step-by-Step Guide Database Security & Privacy in MySQL — A Step-by-Step Guide By Rishika Raj || Subject: Database Security & Privacy This project demonstrates practical MySQL operations using both DDL and DML commands. Tasks include creating databases and tables, inserting and updating records, managing users with restricted access, and applying basic data security methods such as encryption, views, and record deletion for privacy. Tools used: MySQL 8 with MySQL Workbench as the SQL editor (or the MySQL command-line client). 1. Setup & Connect Open your MySQL client and log in as root: mysql -u root -p Screenshot: the mysql> prompt after login. 2. Create Database & Customers Table (DDL/DML) Run the SQL below to create the securedb database and the customers table, insert sample ro...