<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.bzz.ch/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.bzz.ch/feed.php">
        <title>BZZ - Modulwiki - modul:m290_guko:learningunits:lu07:theorie</title>
        <description></description>
        <link>https://wiki.bzz.ch/</link>
        <image rdf:resource="https://wiki.bzz.ch/_media/wiki/logo.png" />
       <dc:date>2026-04-13T15:35:23+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/a_crud?rev=1759060448&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/b_sql_dml?rev=1759082820&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/c_update?rev=1759082959&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/d_delete?rev=1759083015&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.bzz.ch/_media/wiki/logo.png">
        <title>BZZ - Modulwiki</title>
        <link>https://wiki.bzz.ch/</link>
        <url>https://wiki.bzz.ch/_media/wiki/logo.png</url>
    </image>
    <item rdf:about="https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/a_crud?rev=1759060448&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-09-28T11:54:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LU07a – CRUD: Die Basics der Datenverwaltung</title>
        <link>https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/a_crud?rev=1759060448&amp;do=diff</link>
        <description>LU07a – CRUD: Die Basics der Datenverwaltung

CRUD ist ein Akronym für Create, Read, Update, Delete.  
Diese vier Operationen sind die Grundbausteine für den Umgang mit Daten – egal ob in einer Datenbank, einer App oder einem Webservice.  

Stellen Sie sich CRUD wie einen Werkzeugkasten vor, mit dem Sie immer wieder die gleichen Tätigkeiten machen:</description>
    </item>
    <item rdf:about="https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/b_sql_dml?rev=1759082820&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-09-28T18:07:00+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LU07b – SQL-DML: Einführung &amp; Daten einfügen</title>
        <link>https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/b_sql_dml?rev=1759082820&amp;do=diff</link>
        <description>LU07b – SQL-DML: Einführung &amp; Daten einfügen

Einführung

In LU05 haben wir die DDL (Data Definition Language) kennengelernt, mit der Tabellen angelegt werden.

Folgender SQL-Code erzeugt eine leere Tabelle favourite_film mit den Spalten film_id</description>
    </item>
    <item rdf:about="https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/c_update?rev=1759082959&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-09-28T18:09:19+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LU07c – UPDATE: Daten ändern</title>
        <link>https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/c_update?rev=1759082959&amp;do=diff</link>
        <description>LU07c – UPDATE: Daten ändern

Der Befehl UPDATE wird verwendet, um bestehende Daten in einer Tabelle zu ändern.  
Wichtig: Immer mit einer Bedingung (WHERE) einschränken, damit nicht alle Zeilen verändert werden.

UPDATE Statement

Syntax (mit Filter – empfohlen)</description>
    </item>
    <item rdf:about="https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/d_delete?rev=1759083015&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-09-28T18:10:15+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LU07d – DELETE: Daten löschen</title>
        <link>https://wiki.bzz.ch/modul/m290_guko/learningunits/lu07/theorie/d_delete?rev=1759083015&amp;do=diff</link>
        <description>LU07d – DELETE: Daten löschen

Mit DELETE werden Datensätze gelöscht.  
Mit TRUNCATE kann die gesamte Tabelle geleert werden.

DELETE Statement

Syntax (mit Filter – empfohlen)


DELETE FROM tabellenname
WHERE bedingung;


Syntax (ohne Filter – gefährlich!)</description>
    </item>
</rdf:RDF>
