SELECT
SELECT is iets weergeven. SELECT beperkt het aantal kolommen in een resultaat.
Alles (*) selecteren: Kolommen selecteren: Rijen selecteren
SELECT * SELECT kolom1, kolom2 SELECT kolom1, kolom2,
FROM tabel FROM tabel FROM tabel
WHERE kolom1 = ‘waarde’
ORDER BY
ORDER BY sorteert het eindresultaat van je query.
Aflopend Oplopend
SELECT * SELECT *
FROM tabel FROM tabel
ORDER BY kolom DESC ORDER BY kolom ASC
INSERT
INSERT INTO bepaalt welke tabel gevuld gaat worden, dit moet precies één tabel zijn
Met VALUES geef je aan welke gegevens toegevoegd moeten worden
Voorbeeld:
Paul met docentcode VNP01 gaat SQL geven (ICT.P.SQL) aan klas ICTM1c
INSERT INTO les
VALUES (‘ICT.P.SQL’, ‘VNP01’, ‘ICTM1c’)
, Het kan zijn van het nog niet bekend is aan welke klas Paul les gaat geven, dus:
Optie 1: Optie 2:
INSERT INTO les INSERT INTO les (module, docent)
VALUES (‘ICT.P.SQL’, ‘VNP01’, NULL) VALUES (‘ICT.P.SQL’, ‘VNP01’)
Hier geef je geen waarde, dus NULL. Hier beperk je de kolommen wie je gaat
NULL = niks, geen waarde. (GEEN 0) invullen.
UPDATE
Met UPDATE geef je aan welke tabel gewijzigd gaat worden, dit moet precies één tabel zijn
Met SET geef je de nieuwe waarde aan voor een bepaalde kolom
WHERE beperkt het aantal rijen die gewijzigd moeten worden
Voorbeeld:
Paul met docentcode VNP01 gaat SQL geven (ICT.P.SQL) aan klas ICTM1h in plaats van
ICTM1c
UPDATE les
SET klas = ‘ICTM1h’
WHERE docent = ‘VNP01’
DELETE
Met DELETE FROM geef je aan in welke tabel je gegevens gaat verwijderen. Dit moet precies
één tabel zijn.
WHERE beperkt het aantal rijen die verwijderd moeten worden.
Voorbeeld:
Alle lessen van klas ICTM1h moeten worden verwijderd.
DELETE FROM les
WHERE klas = ‘ICTM1h’
The benefits of buying summaries with Stuvia:
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
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
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 PieterBrands. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $3.74. You're not tied to anything after your purchase.