Tag Archives: SQL tutorials

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 | Overview

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | Overview.   SQL is a language to operate databases; it includes database creation, deletion, fetching rows, modifying rows, etc. SQL is an ANSI (American National Standards Institute) standard language, but there are many different versions …

SQL tutorials for Business Analyst – SQL | Introduction

(SQL tutorials for Business Analyst & Beginners) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | Introduction.   SQL is a database computer language designed for the retrieval and management of data in a relational database. SQL stands for Structured Query Language. This tutorial will give you a quick start to SQL. It …

SQL tutorials for Business Analyst – SQL | TRANSACTIONS

(SQL tutorials for Business Analyst) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | TRANSACTIONS.   SQL | TRANSACTIONS What are Transactions? Transactions group a set of tasks into a single execution unit. Each transaction begins with a specific task and ends when all the tasks in the group …

SQL tutorials for Business Analyst – SQL | DDL, DML, TCL and DCL

(SQL tutorials for Business Analyst) In this end-to-end example, you will learn – SQL Tutorials for Business Analyst: SQL | DDL, DML, TCL and DCL.   SQL | DDL, DML, TCL and DCL In this article, we’ll be discussing Data Definition Language, Data Manipulation Language, Transaction Control Language, and Data Control Language. DDL (Data Definition …