<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="https://www.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://www.sqlines.com/feed.php">
        <title>SQLines Tools sybase-asa:statements</title>
        <description></description>
        <link>https://www.sqlines.com/</link>
        <image rdf:resource="https://www.sqlines.com/lib/images/favicon.ico" />
       <dc:date>2026-04-14T20:36:53+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://www.sqlines.com/sybase-asa/statements/comment_on_column?rev=1333359261&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.sqlines.com/sybase-asa/statements/comment_on_table?rev=1333360701&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.sqlines.com/sybase-asa/statements/create_domain?rev=1332445199&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://www.sqlines.com/lib/images/favicon.ico">
        <title>SQLines Tools</title>
        <link>https://www.sqlines.com/</link>
        <url>https://www.sqlines.com/lib/images/favicon.ico</url>
    </image>
    <item rdf:about="https://www.sqlines.com/sybase-asa/statements/comment_on_column?rev=1333359261&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-04-02T09:34:21+00:00</dc:date>
        <title>Sybase SQL Anywhere - COMMENT ON COLUMN - Add Comment for Column</title>
        <link>https://www.sqlines.com/sybase-asa/statements/comment_on_column?rev=1333359261&amp;do=diff</link>
        <description>COMMENT ON COLUMN statement adds a comment for a column in the table.

Quick Example:


   -- Define a table
   CREATE TABLE location (city VARCHAR(90));
   
   -- Add a comment for city column
   COMMENT ON COLUMN location.city IS 'This is the city name';</description>
    </item>
    <item rdf:about="https://www.sqlines.com/sybase-asa/statements/comment_on_table?rev=1333360701&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-04-02T09:58:21+00:00</dc:date>
        <title>Sybase SQL Anywhere - COMMENT ON TABLE  - Add Comment for Table</title>
        <link>https://www.sqlines.com/sybase-asa/statements/comment_on_table?rev=1333360701&amp;do=diff</link>
        <description>COMMENT ON TABLE statement adds a comment for a table.

Quick Example:


   -- Define a table
   CREATE TABLE location (city VARCHAR(90));
   
   -- Add a comment for location table
   COMMENT ON TABLE location IS 'This is the location table';


COMMENT ON TABLE Overview


Summary information:</description>
    </item>
    <item rdf:about="https://www.sqlines.com/sybase-asa/statements/create_domain?rev=1332445199&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-03-22T19:39:59+00:00</dc:date>
        <title>Sybase SQL Anywhere - CREATE DOMAIN - Create User-Defined Data Type (UDT)</title>
        <link>https://www.sqlines.com/sybase-asa/statements/create_domain?rev=1332445199&amp;do=diff</link>
        <description>CREATE DOMAIN statement creates a user-defined data type with a range, optional DEFAULT, NOT NULL and 
CHECK constraint. A domain is an alias for a built-in data type.

Quick Example:


   -- Define a type
   CREATE DOMAIN addr VARCHAR(90);
   
   -- Use it in a table
   CREATE TABLE location (address addr);
   
   -- Insert data into user-defined type (no changes in INSERT syntax)
   INSERT INTO location VALUES ('Kansas City');</description>
    </item>
</rdf:RDF>
