Month: September 2020

Excel formula for Beginners – How to get Sequence of years 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 years in Excel.   Excel formula for Beginners – How to get Sequence of years in Excel Generic formula =DATE(SEQUENCE(12,1,YEAR(A1)),MONTH(B5),DAY(A1)) Explanation To generate a series of dates by year, you can …

Excel formula for Beginners – How to get Sequence of times 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 months in Excel.   Excel formula for Beginners – How to get Sequence of times in Excel Generic formula =TIME(SEQUENCE(n,1,HOUR(start),1),0,0) Explanation To generate a sequence of times, you can use the SEQUENCE …

SQL tutorials for Business Analyst – SQL | SELECT Database, USE Statement

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | SELECT Database, USE Statement.   When you have multiple databases in your SQL Schema, then before starting your operation, you would need to select a database where all the operations would be performed. …

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

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | DROP or DELETE Database.   The SQL DROP DATABASE statement is used to drop an existing database in SQL schema. Syntax The basic syntax of DROP DATABASE statement is as follows − DROP DATABASE DatabaseName; …

SQL tutorials for Business Analyst – SQL | CREATE Database

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | CREATE Database.   The SQL CREATE DATABASE statement is used to create a new SQL database. Syntax The basic syntax of this CREATE DATABASE statement is as follows − CREATE DATABASE DatabaseName; Always the database …

SQL tutorials for Business Analyst – SQL | Expressions

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | Expressions.   An expression is a combination of one or more values, operators and SQL functions that evaluate to a value. These SQL EXPRESSIONs are like formulae and they are written in query …

SQL tutorials for Business Analyst – SQL | Operators

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | Operators.   What is an Operator in SQL? An operator is a reserved word or a character used primarily in an SQL statement’s WHERE clause to perform operation(s), such as comparisons and arithmetic …

SQL tutorials for Business Analyst – SQL | Syntax

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | Syntax.   SQL is followed by a unique set of rules and guidelines called Syntax. This tutorial gives you a quick start with SQL by listing all the basic SQL Syntax. All the …

SQL tutorials for Business Analyst – SQL | RDBMS Concepts

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | RDBMS Concepts.   What is RDBMS? RDBMS stands for Relational Database Management System. RDBMS is the basis for SQL, and for all modern database systems like MS SQL Server, IBM DB2, Oracle, MySQL, and Microsoft Access. A …