Month: September 2020

SQL tutorials for Business Analyst – SQL | DELETE Query

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | DELETE Query.   The SQL DELETE Query is used to delete the existing records from a table. You can use the WHERE clause with a DELETE query to delete the selected rows, otherwise …

SQL tutorials for Business Analyst – SQL | UPDATE Query

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | UPDATE Query.   The SQL UPDATE Query is used to modify the existing records in a table. You can use the WHERE clause with the UPDATE query to update the selected rows, otherwise all the …

SQL tutorials for Business Analyst – SQL | AND and OR Conjunctive Operators

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | AND and OR Conjunctive Operators.   The SQL AND & OR operators are used to combine multiple conditions to narrow data in an SQL statement. These two operators are called as the conjunctive operators. These operators provide …

SQL tutorials for Business Analyst – SQL | WHERE Clause

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | WHERE Clause.   The SQL WHERE clause is used to specify a condition while fetching the data from a single table or by joining with multiple tables. If the given condition is satisfied, then only …

SQL tutorials for Business Analyst – SQL | SELECT Query

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | SELECT Query.   The SQL SELECT statement is used to fetch the data from a database table which returns this data in the form of a result table. These result tables are called result-sets. Syntax …

SQL tutorials for Business Analyst – SQL | INSERT Query

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | INSERT Query.   The SQL INSERT INTO Statement is used to add new rows of data to a table in the database. Syntax There are two basic syntaxes of the INSERT INTO statement which are …

SQL tutorials for Business Analyst – SQL | DROP or DELETE Table

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | DROP or DELETE Table.   The SQL DROP TABLE statement is used to remove a table definition and all the data, indexes, triggers, constraints and permission specifications for that table. NOTE − You should be very …

SQL tutorials for Business Analyst – SQL | CREATE Table

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | CREATE Table.   Creating a basic table involves naming the table and defining its columns and each column’s data type. The SQL CREATE TABLE statement is used to create a new table. Syntax The basic …

Excel formula for Beginners – How to Sort by one column in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Sort by one column in Excel.   Excel formula for Beginners – How to Sort by one column in Excel Generic formula =SORT(data,index,order) Explanation To sort by one column, you can use the SORT function or SORTBY …

Excel formula for Beginners – How to Sort by custom list in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Sort by custom list in Excel.   Excel formula for Beginners – How to Sort by custom list in Excel Generic formula =SORTBY(rng,MATCH(rng,custom,0)) Explanation To sort a list in a custom order, you can combine …