Skip to main content

SQL QUERY

MySQL is a popular relational database management system used to store and manage data. Here are some common SQL queries with examples and explanations:


1. SELECT Query:

   - Example: `SELECT * FROM employees;`

   - Explanation: This query retrieves all columns (`*`) from the "employees" table, returning all rows.


2. WHERE Clause:

   - Example: `SELECT * FROM employees WHERE department = 'HR';`

   - Explanation: This query retrieves all columns from the "employees" table where the "department" column has the value 'HR'.


3. ORDER BY Clause:

   - Example: `SELECT * FROM employees ORDER BY salary DESC;`

   - Explanation: This query retrieves all columns from the "employees" table and sorts the result in descending order based on the "salary" column.


4. INSERT INTO Query:

   - Example: `INSERT INTO employees (name, age, department) VALUES ('John Doe', 30, 'IT');`

   - Explanation: This query inserts a new record into the "employees" table with specified values for the "name", "age", and "department" columns.


5. UPDATE Query:

   - Example: `UPDATE employees SET salary = 50000 WHERE department = 'Finance';`

   - Explanation: This query updates the "salary" column to 50000 for all rows in the "employees" table where the "department" column has the value 'Finance'.


6. DELETE Query:

   - Example: `DELETE FROM employees WHERE age > 60;`

   - Explanation: This query deletes all rows from the "employees" table where the "age" column is greater than 60.


7. JOIN Clause:

   - Example: `SELECT employees.name, departments.department_name FROM employees JOIN departments ON employees.department_id = departments.id;`

   - Explanation: This query retrieves the "name" column from the "employees" table and the "department_name" column from the "departments" table, joining them based on the "department_id" and "id" columns, respectively.


These are just a few examples of MySQL queries. Remember that SQL syntax may vary slightly depending on the specific database system you are using, but the principles remain consistent.

Comments

Popular posts from this blog

Microsoft Word 2010 Shortcut Key in Gujarati

Microsoft Word 2010 Shortcut key in Gujarati

List of all option in tally prime with explanation

 As of my knowledge cutoff in September 2021, TallyPrime is the latest version of Tally software, and it introduced a more user-friendly interface and several new features. Here is a list of some of the main options available in TallyPrime along with brief explanations: 1. **Dashboard**:    - The Dashboard provides an overview of critical business information, such as cash and bank balances, outstanding receivables and payables, and stock summary. 2. **Accounting Vouchers**:    - Accounting Vouchers are used to record financial transactions, such as payments, receipts, sales, purchases, journal entries, etc. 3. **Inventory Vouchers**:    - Inventory Vouchers are used to manage stock-related transactions, including stock transfers, stock journals, manufacturing entries, and more. 4. **Banking**:    - This option allows you to manage bank-related transactions, including cheque printing, bank reconciliation, and payment transactions. 5. **Payrol...