Wij slaan cookies op om onze website te verbeteren. Is dat akkoord? Ja Nee Meer over cookies »
Artikelnummer: 106750835

Introduction to SQL Training

Artikelnummer: 106750835

Introduction to SQL Training

159,00 192,39 Incl. btw

Bestel deze unieke E-Learning cursus Introduction to SQL Training, 1 jaar 24/ 7 toegang tot rijke interactieve video’s, voortgangs door rapportage en testen.

Lees meer
Kortingen:
  • Koop 2 voor €155,82 per stuk en bespaar 2%
  • Koop 3 voor €154,23 per stuk en bespaar 3%
  • Koop 4 voor €152,64 per stuk en bespaar 4%
  • Koop 5 voor €151,05 per stuk en bespaar 5%
  • Koop 10 voor €143,10 per stuk en bespaar 10%
  • Koop 25 voor €135,15 per stuk en bespaar 15%
  • Koop 50 voor €127,20 per stuk en bespaar 20%
Beschikbaarheid:
Op voorraad
Levertijd:
Voor 17:00 uur besteld! Start vandaag. Gratis Verzending.
  • Award Winning E-learning
  • De laagste prijs garantie
  • Persoonlijke service van ons deskundige team
  • Betaal veilig online of op factuur
  • Bestel en start binnen 24 uur

Introduction to SQL E-Learning Training

Bestel deze unieke E-Learning cursus Introduction to SQL online!
✔️ 1 jaar 24/7 toegang tot rijke interactieve video’s, spraak, voortgangsbewaking door middel van rapportages en testen per hoofdstuk om je kennis direct te toetsen.

Waarom kiezen voor deze opleiding?

SQL (Structured Query Language) is een van de meest gebruikte databasebeheertalen ter wereld. Deze training biedt een uitgebreide introductie tot SQL, waarmee je leert hoe je relationele databases kunt bouwen, beheren en analyseren.

Met de opgedane kennis kun je:

  • Databases ontwerpen en beheren met SQL als kerntechnologie.
  • Complexe queries uitvoeren om nuttige inzichten te verkrijgen uit grote datasets.
  • Praktische ervaring opdoen met verschillende databasebeheersystemen (DBMS).
  • De basisprincipes van databasetheorie en -ontwerp leren, zodat je zelfverzekerd databases kunt creëren en optimaliseren.

Wat je leert in deze cursus:

  • SQL-architectuur: Begrijp de structuur en werking van SQL.
  • Databasetheorie: Leer over relationele datamodellen en de basisprincipes van databaseontwerp.
  • Query-opbouw: Creëer, lees, update en verwijder data (CRUD-operaties) binnen relationele databases.
  • SQL-gegevensmanipulatie: Gebruik functies, joins en subqueries om gegevens effectief te analyseren.
  • Beheer en beveiliging: Beheers de best practices voor databasebeheer en beveiliging.

Wie zou moeten deelnemen?

Deze opleiding is perfect voor:

  • IT-professionals die hun vaardigheden willen uitbreiden met kennis van databases en SQL.
  • Data-analisten die inzicht willen krijgen in hoe ze met SQL nuttige data kunnen verzamelen en analyseren.
  • Ontwikkelaars en programmeurs die relationele databases willen integreren in hun applicaties.
  • Beginners die geen eerdere ervaring hebben met databases maar een sterke basis willen leggen in SQL.

Cursusinhoud

SQL Database in a Nutshell

Course: 1 Hour

  • Course Introduction
  • Introduction to the Database Concept
  • The Relation of Data and the Various Databases
  • Variations of Query
  • Dissecting the Code behind Structured Query Language
  • Introduction to the SQL Syntax
  • Understanding Data Types
  • Ready to Create a Database

Playing with Tables

Course: 59 Minutes

  • How to Create a Table
  • Tables by Example
  • Adding Data Using INSERT Statement
  • Creating More Complex Tables
  • Changing an Existing Table
  • Deleting an Existing Table
  • Quick Peek Using SELECT Statement
  • Learning the NULL Statement
  • Why use DEFAULT?

Managing Data the SQL Way

Course: 49 Minutes

  • SELECT in More Detail
  • Selecting Data from More Than One Table
  • Query Your Data Types in SQL
  • Deleting a Record Using a DELETE Query
  • Introduction to Using UPDATE
  • Ordering Results with ORDER BY
  • Filter Results with WHERE Clause
  • Use Case Example Using Data Management Components

Practice: Basics of SQL

Course: 5 Minutes

  • Exercise: SQL Main Components and Why They're Used

Creating Tables

Course: 18 Minutes

  • Course Introduction
  • The PRIMARY KEY Rules
  • Using CREATE TABLE with PRIMARY KEY Constraint
  • Using ALTER TABLE with a PRIMARY KEY Constraint

Using ALTER to Rewrite Data

Course: 18 Minutes

  • Table Altering
  • ALTER and CHANGE
  • DROP COLUMN Introduction
  • Using DROP COLUMN, ALTER, and CHANGE in SQL

Manipulating Data Using SQL Arithmetic

Course: 8 Minutes

  • Basic Math Operators and Functions
  • Understanding Rounding Numbers in SQL

Grouping and Aggregating Data Using SQL

Course: 31 Minutes

  • Using MIN and MAX in SQL
  • AVG and GROUP BY
  • Limit Results Using LIMIT and SELECT DISTINCT
  • Use Case Example Using SQL Arithmetic and Grouping

Introducing String Functions

Course: 33 Minutes

  • Introduction to SUBSTRING() Function
  • LENGTH() Function
  • REVERSE() Function
  • TRIM() Function
  • Date Functions
  • SOUNDEX() and DIFFERENCE() Functions
  • Putting String Functions Together

Practice: Managing Data with SQL

Course: 7 Minutes

  • Exercise: Recognizing SQL Data Processes

Multi-table Database Architecture in SQL

Course: 48 Minutes

  • Course Introduction
  • Introduction to Multi-Table Architecture
  • Connecting Tables Together
  • Creating Tables with a FOREIGN KEY
  • Patterns of Data in SQL
  • SQL Composite Keys Using Multiple Values
  • Functional Dependencies
  • Use Case Example Using Functional Dependencies

SQL Joins and Multi-table Operations

Course: 31 Minutes

  • INNER JOINs – An Introduction
  • EQUI JOINs and NON-EQUI JOINs
  • OUTER JOINs
  • Multiple Conditions Using Multiple JOINs
  • UNION Operator and Combining Results

Subquery – Queries Inside of More Queries

Course: 57 Minutes

  • Introduction to Subquery
  • Using query as a SELECT Column
  • Correlated and Noncorrelated Queries
  • Example of a Query with a Natural Join
  • Using IN, NOT IN in SQL
  • Correlated Query with EXISTS and NOT EXISTS
  • Using HAVING Clause with Queries
  • Using Queries with the UPDATE Statement
  • Using Queries with INSERT Statement
  • Using Queries with DELETE FROM Statement

Look at Advanced Queries in SQL

Course: 17 Minutes

  • Working with Difficult Queries
  • Tips for Efficient Queries

Practice: Multi-tables, Joins, and Advanced Queries

Course: 6 Minutes

  • Exercise: Multilevel Architecture with a Twist

The Big Picture

Course: 39 Minutes

  • Course Introduction
  • Introduction to Views
  • Creating a View
  • Types of Views in SQL
  • Updating Views in SQL
  • Dropping Views

Grouping Statements Using Transactions

Course: 58 Minutes

  • Introducing Transactions
  • Describing ACID Transactions
  • Use Case Transactional Data
  • Defining ROLLBACK Statement
  • Defining COMMIT Statement
  • Using ROLLBACK and COMMIT Statements in SQL
  • Introduction to Transact-SQL
  • Operational Transaction Logs

Implementing Transactions with Locks

Course: 40 Minutes

  • Concept of Locks
  • Various Levels of Locking
  • Setting Modes for Locks
  • Levels of Locking
  • Example of Implementing Locks on Transactions

Restricting Access of Data

Course: 44 Minutes

  • Introduction to SQL Security Concepts
  • User IDs
  • Creating and Managing Users in SQL
  • Group IDs and the Use of Roles
  • Privileges and Access Rights
  • Use Case Example of the Use of Access Rights

Practice: Transactions & SQL Security Architecture

Course: 8 Minutes

  • Exercise: SQL Views, Transactions, & Security Model

Ga aan de slag met SQL!

✔️ Interactieve en flexibele leermethode: leer op je eigen tempo met duidelijke video's en praktische oefeningen.
✔️ Hands-on opdrachten: test je kennis per hoofdstuk en bouw direct toepasbare vaardigheden op.
✔️ Certificaat van deelname: ontvang een bewijs van jouw kennis en expertise na succesvolle afronding van de cursus.

Bestel nu jouw cursus en start jouw reis naar het beheersen van SQL en relationele databases!

Taal Engels
Kwalificaties van de Instructeur Gecertificeerd
Cursusformaat en Lengte Lesvideo's met ondertiteling, interactieve elementen en opdrachten en testen
Lesduur 10:36 uur
Voortgangsbewaking Ja
Toegang tot Materiaal 365 dagen
Technische Vereisten Computer of mobiel apparaat, Stabiele internetverbindingen Webbrowserzoals Chrome, Firefox, Safari of Edge.
Support of Ondersteuning Helpdesk en online kennisbank 24/7
Certificering Certificaat van deelname in PDF formaat
Prijs en Kosten Cursusprijs zonder extra kosten
Annuleringsbeleid en Geld-Terug-Garantie Wij beoordelen dit per situatie
Award Winning E-learning Ja
Tip! Zorg voor een rustige leeromgeving, tijd en motivatie, audioapparatuur zoals een koptelefoon of luidsprekers voor audio, accountinformatie zoals inloggegevens voor toegang tot het e-learning platform.

Er zijn nog geen reviews geschreven over dit product.

Loading...

OEM Office Elearning Menu Genomineerd voor 'Beste Opleider van Nederland'

OEM Office Elearning Menu is trots genomineerd te zijn voor de titel 'Beste Opleider van Nederland' door Springest, een onderdeel van Archipel. Deze erkenning bevestigt onze kwaliteit en toewijding. Hartelijk dank aan al onze cursisten.

Beoordelingen

Er zijn nog geen reviews geschreven over dit product.

Combideals

25.000+

Springest: 9.1 - Edubookers 9.0

3500+

20+