Skip to main content

Practical 1: Getting Started with MYSQL


 Getting Started with MySQL

  1. Introduction to MySQL
    • Definition: MySQL is an open-source relational database management system (RDBMS)
    • Uses: Web applications, data warehousing, e-commerce, logging applications
    • Key features: Speed, reliability, scalability, and ease of use
  2. Installing MySQL
    • Download MySQL Community Server from official website
    • Follow installation wizard for your operating system
    • Set root password during installation
    • Verify installation:
      mysql --version
  3. MySQL Command-line Client
    • Accessing MySQL:
      mysql -u root -p
    • Basic commands:

      SHOW
      DATABASES; CREATE DATABASE mydb; USE mydb; SHOW TABLES;
  4. MySQL Workbench
    • Introduction: Visual tool for database design and management
    • Key features:
      • SQL development
      • Data modeling
      • Server administration
    • Example: Creating a new connection
      • New Connection > Enter details (hostname, username, password)
  5. PHPMyAdmin
    • Web-based MySQL administration tool
    • Often comes pre-installed with web hosting packages
    • Key features:
      • Manage databases, tables, columns, relations, indexes, users, permissions
      • Execute SQL statements
      • Import/export data in various formats
    • Accessing PHPMyAdmin:
  6. Creating Your First Database and Table Using command-line:

    CREATE
    DATABASE bookstore; USE bookstore; CREATE TABLE books ( id INT AUTO_INCREMENT PRIMARY KEY, title VARCHAR(100) NOT NULL, author VARCHAR(100) NOT NULL, publication_year INT, isbn VARCHAR(13) UNIQUE );
    Using PHPMyAdmin:
    • Click "New" to create a database
    • Enter database name and click "Create"
    • Click on the new database
    • Click "Create table", enter name and number of columns
    • Fill in column details and click "Save"
  7. Inserting and Querying Data Inserting data:

    INSERT
    INTO books (title, author, publication_year, isbn) VALUES ('To Kill a Mockingbird', 'Harper Lee', 1960, '9780446310789');
    Querying data:

    SELECT * FROM books; SELECT title, author FROM books WHERE publication_year > 1950;


Basic Commands everyone should know:

The following commands are particularly useful for navigating the MySQL environment, managing your session, and controlling how results are displayed. They can significantly improve your efficiency when working with MySQL from the command line.

  1. ? or \h (help) Displays the help menu, showing available commands and their descriptions.
  2. \c (clear) Clears the current input statement, useful if you make a mistake and want to start over.
  3. \r (connect) Reconnects to the MySQL server. You can optionally specify a database and host.
  4. \d (delimiter) Sets a new statement delimiter. Useful when writing stored procedures or functions.
  5. \G (ego) Sends the command to the MySQL server and displays the result vertically, which can be more readable for wide result sets.
  6. \q (quit/exit) Exits the MySQL client.
  7. \g (go) Sends the current command to the MySQL server for execution.
  8. \n (nopager) Disables the pager and prints output directly to stdout.
  9. \P (pager) Sets a pager for output. Useful for viewing large result sets.
  10. . (source) Executes an SQL script file. You need to provide the file name as an argument.
  11. \s (status) Retrieves and displays status information from the server.
  12. ! (system) Allows you to execute a system shell command without leaving the MySQL client.
  13. \u (use) Switches to another database. You need to provide the database name as an argument.
  14. \C (charset) Switches to another character set. This can be necessary when processing binary logs with multi-byte character sets.
  15. \W (warnings) Enables the display of warnings after every statement.
  16. \w (nowarning) Disables the display of warnings after every statement.


Exercises:

  1. Installation and Setup
    • Install MySQL on your computer
    • Create a new user with username 'student' and password 'password123'
    • Grant this user all privileges on a new database called 'school'
  2. Database and Table Creation
    • Create a database named 'library'
    • In this database, create a table named 'authors' with the following columns:
      • id (integer, auto-increment, primary key)
      • name (varchar, maximum 100 characters, not null)
      • birth_year (integer)
      • nationality (varchar, maximum 50 characters)
  3. Data Manipulation
    • Insert at least 5 authors into the 'authors' table
    • Write a query to select all authors born after 1950
    • Update the nationality of one author
    • Delete an author from the table
  4. PHPMyAdmin Practice
    • Log into PHPMyAdmin
    • Create a new database called 'inventory'
    • Create a table named 'products' with columns: id, name, price, and quantity
    • Insert 3 products using the PHPMyAdmin interface
    • Use the SQL tab to write a query that selects all products with a price greater than 10
  5. MySQL Workbench
    • Create a new connection in MySQL Workbench
    • Design an Entity-Relationship Diagram (ERD) for a simple blog system with tables for posts, users, and comments
    • Forward engineer this design to create the actual database and tables

Comments

Popular posts from this blog

ORACLE Express Edition: Getting Started

1. Introduction to Oracle Database 21c Express Edition (XE) - Free, lightweight version of Oracle Database - Ideal for learning and small-scale applications - Limited to 12GB of user data and uses up to 2GB of RAM 2. Installation and Setup 2.1 Installing Oracle 21c XE 1. Download Oracle 21c XE from: https://www.oracle.com/database/technologies/xe-downloads.html 2. Run the installer:    - Windows: Double-click the .exe file    - Linux: Use `rpm` or `yum` command 3. Follow the installation wizard:  Accept the license agreement Choose an installation location (default is usually fine) Set a password for the SYS, SYSTEM, and PDBADMIN accounts (write this down!) Select the option to start the database service automatically (recommended)  4. Complete the installation: Wait for the installation process to finish Note down the database connection details provided at the end The default container database (CDB) name is XE The default pluggable database (PDB) nam...

MYSQL Constraints

 PK - Primary Key: Uniquely identifies each record in a table. NN - Not Null: Ensures a column cannot have a NULL value. UQ - Unique: Ensures all values in a column are different. B - Binary: Stores binary byte strings. UN - Unsigned: For numeric types, allows only non-negative values. ZF - Zero Fill: Pads numeric values with zeros to the left. AI - Auto Increment: Automatically generates a unique number for new records. G - Generated Column: Value is computed from an expression. PK - Primary Key A primary key uniquely identifies each record in a table. It must contain unique values and cannot have NULL values.  Example: CREATE TABLE Students ( StudentID INT PRIMARY KEY , Name VARCHAR ( 50 ) , Age INT ) ; Here, StudentID is the primary key. NN - Not Null  This constraint ensures that a column cannot have NULL values.  Example: CREATE TABLE Employees ( EmployeeID INT PRIMARY KEY , Name VARCHAR ( 50 ) NOT NULL , Email VA...