Skip to content

This repository contains a collection of basic SQL queries for working with MySQL. The queries cover a variety of common operations, including SELECT, Create, Search, Update. Each query includes a brief description and is well-commented for easy understanding.

Notifications You must be signed in to change notification settings

Siddik-1997/Basic-SQL-Queries

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Basic-SQL-Queries

Technology Used:

  • Xampp
  • SQLyog

Queries executed based on:

  1. Create a database named database_assignment.
  2. create a table named customers.
  3. insert the following customer data:
  • a) First Name: Babara Last Name: MacCaffrey Date of Birth: 1986-03-28 Phone: 781-932-9754 Address: 0 Sage Terrace City: Waltham State: MA Points: 2273

  • b) First Name: Ines Last Name: Brushfield Date of Birth: 1986-04-13 Phone: 804-427-9456 Address: 14187 Commercial Trail City: Hampton State: VA Points: 947

  • c) First Name: Freddi Last Name: Boagey Date of Birth: 1985-02-07 Phone: 719-724-7869 Address: 251 Springs Junction City: Colorado Springs State: CO Points: 2967

  • d) First Name: Ambur Last Name: Roseburgh Date of Birth: 1974-04-14 Phone: 407-231-8017 Address: 30 Arapahoe Terrace City: Orlando State: FL Points: 457

  • e) First Name: Clemmie Last Name: Betchley Date of Birth: 1973-11-07 Phone: Address: 5 Spohn Circle City: Arlington State: TX Points: 3675

  1. Show only 2 members whose points are more than 1000.
  2. Find the customers whose age is in 1980 to 1990 or points less than 1000.
  3. Order the customers by points in ascending order.
  4. Find the customer whose name contains 'burgh' using Regular Expression.
  5. Find the customer who does not have phone number.
  6. Change the 'Date of Birth' column name into 'dob'.
  7. Find the max point holder customer name.
  8. Execute a query for the following scenario.
  • If customers have points less than 1000, they are bronze member.
  • If customers have points more than 1000 and less than 2000, they are silver member.
  • If customers have points more than 2000 and less than 3000, they are gold member.
  • If customers have points more than 3000, they are platinum member.

About

This repository contains a collection of basic SQL queries for working with MySQL. The queries cover a variety of common operations, including SELECT, Create, Search, Update. Each query includes a brief description and is well-commented for easy understanding.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published