Month: August 2020

MySQL Tutorials for Business Analyst: ORDER BY in MySQL: DESC and ASC

(SQL examples for Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: MySQL Tutorials for Business Analyst: ORDER BY in MySQL: DESC and ASC.   ORDER BY in MySQL: DESC & ASC Sorting Results Using the SELECT command, results were returned in the same order the records were added into …

MySQL Tutorials for Business Analyst: MySQL UPDATE Query

(SQL examples for Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: MySQL Tutorials for Business Analyst: MySQL UPDATE Query.   MySQL UPDATE Query with Example What is the UPDATE Query? UPDATE MySQL command is used to modify rows in a table. The update command can be used to update a …

MySQL Tutorials for Business Analyst: MySQL DELETE Query

(SQL examples for Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: MySQL Tutorials for Business Analyst: MySQL DELETE Query.   MySQL DELETE Query with Example What is the DELETE Query? MySQL DELETE command is used to delete rows that are no longer required from the database tables. It deletes the …

Excel formula for Beginners – How to get Sequence of days in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to get Sequence of days in Excel.   Excel formula for Beginners – How to get Sequence of days in Excel Generic formula =SEQUENCE(days,1,start_date,step) Explanation To generate a series of dates by day, you …

Excel formula for Beginners – How to Find Minimum value if unique in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Find Minimum value if unique in Excel.   Excel formula for Beginners – How to Find Minimum value if unique in Excel Generic formula =MIN(UNIQUE(range,0,1)) Explanation To find the minimum unique value in …

Excel formula for Beginners – How to FILTER with multiple OR criteria in Excel

(Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to FILTER with multiple OR criteria in Excel.   Excel formula for Beginners – How to FILTER with multiple OR criteria in Excel Explanation To extract data with multiple OR conditions, you can use the FILTER function together …

MySQL Tutorials for Business Analyst: MySQL INSERT INTO Query: How to add Row in Table

(SQL examples for Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: MySQL INSERT INTO Query: How to add Row in Table.   MySQL INSERT INTO Query: How to add Row in Table What is INSERT INTO? INSERT INTO is used to store data in the tables. The INSERT command creates a …

Excel formula for Beginners – How to Filter with exact match in Excel

(Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Filter with exact match in Excel.   Excel formula for Beginners – How to Filter with exact match in Excel Generic formula =FILTER(data,EXACT(range,A1)) Explanation To filter data in case-sensitive way, you can use the FILTER function with …

Excel formula for Beginners – How to FILTER to remove columns in Excel

(Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to FILTER to remove columns in Excel.   Excel formula for Beginners – How to FILTER to remove columns in Excel Generic formula =FILTER(data,(header=”a”)+(header=”b”)) Explanation To filter columns, supply a horizontal array for the include argument. …

Excel formula for Beginners – How to Filter text contains in Excel

(Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Filter text contains in Excel.   Excel formula for Beginners – How to Filter text contains in Excel Generic formula =FILTER(rng1,ISNUMBER(SEARCH(“txt”,rng2))) Explanation To filter data to include data based on a “contains specific text” logic, …