MySQL- tutoriaal

MySQL TUIS MySQL-inleiding MySQL RDBMS

MySQL SQL

MySQL SQL MySQL KIES MySQL WAAR MySQL EN, OF, NIE MySQL BESTEL DEUR MySQL VOEG IN MySQL NULL-waardes MySQL-OPDATERING MySQL SKEE MySQL-LIMIET MySQL MIN en MAX MySQL COUNT, AVG, SUM MySQL LIKE MySQL Wildcards MySQL IN MySQL TUSSEN MySQL aliasse MySQL sluit aan MySQL BINNE SLUIT AAN MySQL LOS LINKS AAN MySQL REGS SLUIT AAN MySQL KRUIS SLUIT AAN MySQL Self Sluit aan MySQL UNIE MySQL GROEP DEUR MySQL HET MySQL BESTAAN MySQL ENIGE, ALMAL MySQL INSERT SELECT MySQL-GEVAL MySQL nul-funksies MySQL-kommentaar MySQL-operateurs

MySQL- databasis

MySQL Skep DB MySQL Drop DB MySQL Skep tabel MySQL Drop Table MySQL Verander Tabel MySQL-beperkings MySQL nie nul nie MySQL Uniek MySQL-primêre sleutel MySQL buitelandse sleutel MySQL-tjek MySQL verstek MySQL Skep indeks MySQL Outo-verhoging MySQL-datums MySQL-aansigte

MySQL- verwysings

MySQL-datatipes MySQL-funksies

MySQL voorbeelde

MySQL voorbeelde MySQL Vasvra MySQL-oefeninge

MySQL RDBMS


Wat is RDBMS?

RDBMS staan ​​vir Relational Database Management System.

RDBMS is 'n program wat gebruik word om 'n relasionele databasis in stand te hou.

RDBMS is die basis vir alle moderne databasisstelsels soos MySQL, Microsoft SQL Server, Oracle en Microsoft Access.

RDBMS gebruik SQL-navrae om toegang tot die data in die databasis te kry.


Wat is 'n databasistabel?

'n Tabel is 'n versameling verwante data-inskrywings, en dit bestaan ​​uit kolomme en rye.

'n Kolom bevat spesifieke inligting oor elke rekord in die tabel.

'n Rekord (of ry) is elke individuele inskrywing wat in 'n tabel bestaan.

Kyk na 'n keuse uit die Northwind "Klante"-tabel:

CustomerID CustomerName ContactName Address City PostalCode Country
1

Alfreds Futterkiste Maria Anders Obere Str. 57 Berlin 12209 Germany
2 Ana Trujillo Emparedados y helados Ana Trujillo Avda. de la Constitución 2222 México D.F. 05021 Mexico
3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 México D.F. 05023 Mexico
4

Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK
5 Berglunds snabbköp Christina Berglund Berguvsvägen 8 Luleå S-958 22 Sweden

Die kolomme in die "Klante"-tabel hierbo is: Klant-ID, Klantnaam, Kontaknaam, Adres, Stad, Poskode en Land. Die tabel het 5 rekords (rye).


Wat is 'n relasionele databasis?

'n Relasionele databasis definieer databasisverwantskappe in die vorm van tabelle. Die tabelle hou verband met mekaar - gebaseer op data wat aan elkeen gemeen is.

Kyk na die volgende drie tabelle "Klante", "Bestellings" en "Verstuurders" vanaf die Northwind-databasis:

Kliënte Tabel

CustomerID CustomerName ContactName Address City PostalCode Country
1

Alfreds Futterkiste Maria Anders Obere Str. 57 Berlin 12209 Germany
2 Ana Trujillo Emparedados y helados Ana Trujillo Avda. de la Constitución 2222 México D.F. 05021 Mexico
3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 México D.F. 05023 Mexico
4

Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK
5 Berglunds snabbköp Christina Berglund Berguvsvägen 8 Luleå S-958 22 Sweden

Die verhouding tussen die "Klante"-tabel en die "Bestellings"-tabel is die CustomerID-kolom:

Bestellingstabel

OrderID CustomerID EmployeeID OrderDate ShipperID
10278

5 8 1996-08-12 2
10280 5 2 1996-08-14 1
10308 2 7 1996-09-18 3
10355

4 6 1996-11-15 1
10365 3 3 1996-11-27 2
10383 4 8 1996-12-16 3
10384 5 3 1996-12-16 3

Die verhouding tussen die "Bestellings"-tabel en die "Versender"-tabel is die ShipperID-kolom:

Versender tafel

ShipperID ShipperName Phone
1 Speedy Express (503) 555-9831
2 United Package (503) 555-3199
3 Federal Shipping (503) 555-9931