<?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-to-oracle</title>
        <description></description>
        <link>https://sqlines.com/</link>
        <image rdf:resource="https://sqlines.com/lib/images/favicon.ico" />
       <dc:date>2026-04-14T11:19:39+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://sqlines.com/mysql-to-oracle/date_format?rev=1383136727&amp;do=diff"/>
                <rdf:li rdf:resource="https://sqlines.com/mysql-to-oracle/drop_table_if_exists?rev=1360186149&amp;do=diff"/>
                <rdf:li rdf:resource="https://sqlines.com/mysql-to-oracle/insert?rev=1363795472&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-to-oracle/date_format?rev=1383136727&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-10-30T12:38:47+00:00</dc:date>
        <title>DATE_FORMAT - Convert Date to String - MySQL to Oracle Migration</title>
        <link>https://sqlines.com/mysql-to-oracle/date_format?rev=1383136727&amp;do=diff</link>
        <description>In MySQL, DATE_FORMAT function converts a DATE or DATETIME value to string using the specified format. In Oracle, you can use TO_CHAR function.

Note that the DATE_FORMAT and TO_CHAR use different format strings. 

MySQL:


  -- Convert the current date to YYYYMM format
  SELECT DATE_FORMAT(NOW(), '%Y%m');
  # 201302</description>
    </item>
    <item rdf:about="https://sqlines.com/mysql-to-oracle/drop_table_if_exists?rev=1360186149&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-02-06T21:29:09+00:00</dc:date>
        <title>DROP TABLE IF EXISTS - MySQL to Oracle Migration</title>
        <link>https://sqlines.com/mysql-to-oracle/drop_table_if_exists?rev=1360186149&amp;do=diff</link>
        <description>In MySQL you can use IF EXISTS clause in the DROP TABLE statement. This is mostly uses to suppress error messages in the database schema creation scripts when they are executed for the first time.

MySQL:


  -- The statement always returns success
  DROP TABLE IF EXISTS sales;</description>
    </item>
    <item rdf:about="https://sqlines.com/mysql-to-oracle/insert?rev=1363795472&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-03-20T16:04:32+00:00</dc:date>
        <title>INSERT Multiple Rows - MySQL to Oracle Migration</title>
        <link>https://sqlines.com/mysql-to-oracle/insert?rev=1363795472&amp;do=diff</link>
        <description>In MySQL, you can insert multiple rows using a single INSERT statement:

MySQL:


  -- Sample table
  CREATE TABLE cities
  (
      name VARCHAR(70),
      state CHAR(2)
  );
  
  -- Insert multiple rows with single statement
  INSERT INTO cities (name, state) VALUES
    ('San Francisco', 'CA'),
    ('New York', 'NY'),
    ('Los Angeles', 'CA');</description>
    </item>
</rdf:RDF>
