100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Samenvatting Databanken SQL Practica SV - Handelswetenschappen Management en IT $6.06   Add to cart

Summary

Samenvatting Databanken SQL Practica SV - Handelswetenschappen Management en IT

1 review
 122 views  2 purchases
  • Course
  • Institution

Een overzicht van alle SQL instructies

Preview 4 out of 18  pages

  • January 12, 2021
  • 18
  • 2020/2021
  • Summary

1  review

review-writer-avatar

By: sfrb • 3 year ago

avatar-seller
SQL Practica
Inhoud
Deel 1: Select From Where.............................................................................................................................. 2
DB_FOUNDATIONS ...................................................................................................................................... 5
Deel 2: Logische operatoren en Order By ....................................................................................................... 7
Deel 3: DML – Insert, Update, Delete, Truncate ............................................................................................. 8
Deel 8: Aggregerende functies ........................................................................................................................ 9
Deel 9: Group By en Union ............................................................................................................................ 10
Deel 9a: Andere tabellen verkennen............................................................................................................. 12
Deel 9b: Joins ................................................................................................................................................ 13
VOORBEELD ............................................................................................................................................... 15
Deel 10: Subqueries ...................................................................................................................................... 16
Deel 11: Views ............................................................................................................................................... 18

,Deel 1: Select From Where

SELECT clausule; WHERE clausule; (NOT) LIKE; (NOT) IN; (NOT) BETWEEN AND

UITLEG CODE

gebruik databank use db_foundations;

commentaar invoegen -- commentaar

/*
dit is een commentaarblok met slash ster in het
commentaarblok invoegen
begin en ster slash op het einde
*/
SELECT *
alles selecteren uit een tabel
FROM employees;
SELECT phone_number, last_name, first_name
bepaalde kolommen selecteren uit een tabel
FROM employees;
SELECT last_name, salary, 12*salary+1000,
rekenen met kolommen 12*(salary+1000)
FROM employees;
SELECT concat(first_name, ' ', last_name, ' is a ',
job_id)
samenvoegen van kolommen met een zin
FROM employees;


SELECT concat(first_name, ' ', last_name, ' is a ',
job_id) AS "Who is who?"
FROM employees;
kolom-aliassen gebruiken
SELECT last_name "Naam", 12*salary+1000
"jaarloon"
FROM employees;
SELECT DISTINCT manager_id
kolom selecteren zonder duplicaten
FROM employees;


SELECT *
bepaalde rijen selecteren uit een tabel
FROM employees
- gelijk stellen aan een getal
WHERE department_id = 60;


bepaalde rijen selecteren uit een tabel SELECT *

, - gelijk stellen aan een tekst met ‘ ‘ FROM employees
- gelijk stellen aan een datum met ‘ ‘
WHERE job_id = 'IT_PROG';
volgens standaard

SELECT *
FROM employees
WHERE hire_date = '1999-11-16';
bepaalde rijen selecteren uit een tabel
SELECT *
- verschillend van een getal met != of <>
FROM employees
- die niet zijn ingevuld met IS NULL
WHERE department_id != 60;
- die wel zijn ingevuld met IS NOT NULL
- kleiner dan met <
- groter dan met > SELECT *
- minstens met >= FROM employees
- hoogstens met <=
WHERE department_id IS NULL;

SELECT *
bepaalde rijen selecteren uit een tabel FROM employees
- volgens alfabetische volgorde die na een WHERE first_name > "Peter";
bepaalde letter komen (of volledige
naam)
SELECT *
- die sedert een datum zijn aangenomen
FROM employees
WHERE hire_date >= "1999-11-16";
SELECT *
FROM employees
Wildcards gebruiken voor WHERE first_name LIKE "k%";
- een willekeurig aantal willekeurige
characters met “%”
SELECT *
vb. naam startend met k
vb. naam niet startend met k FROM employees
vb. datum bevat het jaar 1997
WHERE first_name NOT LIKE "k%";
- precies één willekeurig character met “_”
vb. e op de voorlaatste positie
SELECT *
OPM: datum schrijfwijze is jjj-mm-dd
FROM employees
OPM: backslash gebruiken als escape character
WHERE hire_date LIKE "1997%";
wanneer je underscore of backslash wil opnemen
vb. LIKE “%\_%”
vb. LIKE “%\\%” SELECT *
FROM employees
WHERE first_name LIKE "%e_";

, SELECT *
bepaalde rijen selecteren uit een tabel FROM employees
- die tot één van de opgegeven waarden WHERE department_id IN (110, 10, 80);
behoren
- die niet tot één van de opgegeven
waarden behoren SELECT *
OPM: vergeet aanhalingstekens niet waar nodig FROM employees
WHERE job_id NOT IN ("IT_PROG", "AD_VP");
SELECT *
FROM employees
WHERE hire_date BETWEEN "1998-03-15" AND
bepaalde rijen selecteren uit een tabel
"1998-04-01";
- die tussen de opgegeven waarden
bevinden
- die niet tussen de opgegeven waarden SELECT *
bevinden
FROM employees
vb. groter dan 90 of kleiner dan 20
WHERE department_id NOT BETWEEN 20 AND 90;
OPM: dit is echter inclusief grenzen! Wanneer je
werkelijk tussen de waarden wil dan verander je
de grenzen met één eenheid vb. tussen 20 en 90
SELECT *
FROM employees
WHERE department_id BETWEEN 21 AND 89;

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller handelswetenschapper98. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $6.06. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

80796 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$6.06  2x  sold
  • (1)
  Add to cart