<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://martin-prochnow.de/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://martin-prochnow.de/feed.php">
        <title>Martin Prochnow - development:database</title>
        <description></description>
        <link>https://martin-prochnow.de/</link>
        <image rdf:resource="https://martin-prochnow.de/_media/wiki/logo.png" />
       <dc:date>2026-04-07T19:15:09+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://martin-prochnow.de/development/database/index?rev=1682928618&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://martin-prochnow.de/_media/wiki/logo.png">
        <title>Martin Prochnow</title>
        <link>https://martin-prochnow.de/</link>
        <url>https://martin-prochnow.de/_media/wiki/logo.png</url>
    </image>
    <item rdf:about="https://martin-prochnow.de/development/database/index?rev=1682928618&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-05-01T08:10:18+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Datenbanken</title>
        <link>https://martin-prochnow.de/development/database/index?rev=1682928618&amp;do=diff</link>
        <description>Datenbanken

	*  &lt;http://sqlfiddle.com/&gt;

SQLite

Case-insensitive ORDER BY


SELECT
    _column_
FROM
    _table_
ORDER BY 
    _column_
COLLATE NOCASE ASC;


Update einer Tabelle mit Werten aus einer anderen


UPDATE _table1_ SET
    _columnA_ = (
        SELECT 
            _columnB_
        FROM
            _table2_
        WHERE
            _table2_._id_ = _table2_.id
    )
WHERE
    EXISTS (
        SELECT
            1
        FROM
            _table2_
        WHERE
            _table2_._…</description>
    </item>
</rdf:RDF>
