<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="https://sqlines.com/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://sqlines.com/feed.php">
        <title>SQLines Tools mysql:statements</title>
        <description></description>
        <link>https://sqlines.com/</link>
        <image rdf:resource="https://sqlines.com/lib/images/favicon.ico" />
       <dc:date>2026-04-29T13:24:48+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://sqlines.com/mysql/statements/create_table?rev=1323936311&amp;do=diff"/>
                <rdf:li rdf:resource="https://sqlines.com/mysql/statements/insert?rev=1324557047&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://sqlines.com/lib/images/favicon.ico">
        <title>SQLines Tools</title>
        <link>https://sqlines.com/</link>
        <url>https://sqlines.com/lib/images/favicon.ico</url>
    </image>
    <item rdf:about="https://sqlines.com/mysql/statements/create_table?rev=1323936311&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-12-15T08:05:11+00:00</dc:date>
        <title>MySQL CREATE TABLE Statement - Features, Examples and Equivalents</title>
        <link>https://sqlines.com/mysql/statements/create_table?rev=1323936311&amp;do=diff</link>
        <description>CREATE TABLE statement creates a table in a MySQL database.

 Syntax (full...)  CREATE [TEMPORARY] TABLE [IF NOT EXISTS] table_name (columns)  options  CREATE TABLE table_name select_statement  CREATE TABLE table_name LIKE table_name2   Quick Example  CREATE TABLE t (c CHAR);  Table Name  table_name or database_name.table_name to create the table in the specified database  Temporary Table  Visible only to the current connection, and dropped automatically when it is closed 

Versions: MySQL 5.x</description>
    </item>
    <item rdf:about="https://sqlines.com/mysql/statements/insert?rev=1324557047&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-12-22T12:30:47+00:00</dc:date>
        <title>MySQL - INSERT - Guide, Examples and Alternatives</title>
        <link>https://sqlines.com/mysql/statements/insert?rev=1324557047&amp;do=diff</link>
        <description>INSERT statement inserts one or more rows into an existing table. You can specify values explicitly, or select from another table. 

Quick Example:


  -- Create a table
  CREATE TABLE states (abbr CHAR(2), name VARCHAR(30));
  
  -- Insert 3 rows
  INSERT INTO states VALUES ('CA', 'California'), ('TX', 'Texas'), ('WA', 'Washington');</description>
    </item>
</rdf:RDF>
