<?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: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-07T17:37:11+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.bzz.ch/modul/m290/learningunits/lu07/theorie/01?rev=1729161965&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.bzz.ch/modul/m290/learningunits/lu07/theorie/02?rev=1729863053&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.bzz.ch/modul/m290/learningunits/lu07/theorie/03?rev=1729161942&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.bzz.ch/modul/m290/learningunits/lu07/theorie/04?rev=1729165751&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/learningunits/lu07/theorie/01?rev=1729161965&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-17T10:46:05+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LU08a - SQL-DML: Basics</title>
        <link>https://wiki.bzz.ch/modul/m290/learningunits/lu07/theorie/01?rev=1729161965&amp;do=diff</link>
        <description>LU08a - SQL-DML: Basics

Learning Objectives

	*  Understand and Apply Data Insertion Concepts
	*  Master the Use of UPDATE Statements with Filters
	*  Safely Delete Records Using SQL DELETE Statements:
	*  Demonstrate Practical Usage of SQL DML in Real-world Scenarios</description>
    </item>
    <item rdf:about="https://wiki.bzz.ch/modul/m290/learningunits/lu07/theorie/02?rev=1729863053&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-25T13:30:53+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LU08b - SQL-DML: INSERT INTO</title>
        <link>https://wiki.bzz.ch/modul/m290/learningunits/lu07/theorie/02?rev=1729863053&amp;do=diff</link>
        <description>LU08b - SQL-DML: INSERT INTO

Sources

	*   W3Schools | INSERT INTO 
	*   MySQL.COM | INSERT INTO
	*  

INSERT Statement

The INSERT command is used to add new records to a table. When using INSERT, it is essential to specify the table and columns where the data will be added.

 Syntax 
INSERT INTO table_name (column1, column2, column3) 
VALUES (value1, value2, value3);</description>
    </item>
    <item rdf:about="https://wiki.bzz.ch/modul/m290/learningunits/lu07/theorie/03?rev=1729161942&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-17T10:45:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LU08c - SQL-DML: UPATE</title>
        <link>https://wiki.bzz.ch/modul/m290/learningunits/lu07/theorie/03?rev=1729161942&amp;do=diff</link>
        <description>LU08c - SQL-DML: UPATE

 Sources:

	*   W3Schools | UPDATE TABLE
	*   MySQL.COM | UPDATE TABLE
	*   Youtube | How to UPDATE and DELETE data from a TABLE 

The UPDATE command is used to modify existing data in a table. It can be executed with or without a WHERE clause, depending on whether you want to update specific rows or all rows.

UPDATE with Filter (WHERE Clause)</description>
    </item>
    <item rdf:about="https://wiki.bzz.ch/modul/m290/learningunits/lu07/theorie/04?rev=1729165751&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-17T11:49:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LU08d - SQL-DML: DELETE</title>
        <link>https://wiki.bzz.ch/modul/m290/learningunits/lu07/theorie/04?rev=1729165751&amp;do=diff</link>
        <description>LU08d - SQL-DML: DELETE

Sources:

	*   W3Schools | DELETE 

3. DELETE Statement

The DELETE command is used to remove records from a table. Like UPDATE, it can be run with or without a filter, making it vital to define the condition to avoid unintended data removal.

DELETE with Filter (WHERE Clause)</description>
    </item>
</rdf:RDF>
