SQL Examples

Learn to Code SQL Example – SQL | Wildcard operators

(SQL Example for Citizen Data Scientist & Business Analyst)   SQL | Wildcard operators In the above mentioned article WHERE Clause is discussed in which LIKE operator is also explained, where you must have encountered the word wildcards now lets get deeper into Wildcards. Wildcard operators are used with LIKE operator, there are four basic …

Learn to Code SQL Example – SQL | GROUP BY

(SQL Example for Citizen Data Scientist & Business Analyst)   SQL | GROUP BY The GROUP BY Statement in SQL is used to arrange identical data into groups with the help of some functions. i.e if a particular column has same values in different rows then it will arrange these rows in a group. Important …

Learn to Code SQL Example – SQL | Arithmetic Operators

(SQL Example for Citizen Data Scientist & Business Analyst)   SQL | Arithmetic Operators Arithmetic Operators are: + [Addition] – [Subtraction] / [Division] * [Multiplication] % [Modulus] Addition (+) : It is used to perform addition operation on the data items, items include either single column or multiple columns. Implementation: SELECT employee_id, employee_name, salary, salary + 100 AS …

Learn to Code SQL Example – SQL | ALL and ANY

(SQL Example for Citizen Data Scientist & Business Analyst) SQL | ALL and ANY ALL & ANY are logical operators in SQL. They return boolean value as a result. ALL ALL operator is used to select all tuples of SELECT STATEMENT. It is also used to compare a value to every value in another value set …

Learn to Code SQL Example – SQL | WITH clause

(SQL Example for Citizen Data Scientist & Business Analyst) SQL | WITH clause The SQL WITH clause was introduced by Oracle in the Oracle 9i release 2 database. The SQL WITH clause allows you to give a sub-query block a name (a process also called sub-query refactoring), which can be referenced in several places within …

SQL tutorials for Business Analyst – SQL | Date Functions

  SQL tutorials for Business Analyst – SQL | Date Functions   The following table has a list of all the important Date and Time related functions available through SQL. There are various other functions supported by your RDBMS. The given list is based on MySQL RDBMS. Sr.No. Function & Description 1 ADDDATE()Adds dates 2 …

SQL tutorials for Business Analyst – SQL | Wildcard Operators

  SQL tutorialsfor Business Analyst SQL| Wildcard Operators We have already discussed about the SQL LIKE operator, which is used to compare a value to similar values using the wildcard operators. SQL supports two wildcard operators in conjunction with the LIKE operator which are explained in detail in the following table. Sr.No. Wildcard & Description …

SQL tutorials for Business Analyst – SQL | Transactions

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | Transactions.   SQL tutorials for Business Analyst – SQL | Transactions   A transaction is a unit of work that is performed against a database. Transactions are units or sequences of work accomplished …

SQL tutorials for Business Analyst – SQL | Having Clause

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | Having Clause.   SQL tutorials for Business Analyst – SQL | Having Clause   The HAVING Clause enables you to specify conditions that filter which group results appear in the results. The WHERE clause places …