SGML improvements to the DML chapter.
authorNeil Conway
Tue, 1 Mar 2005 23:45:00 +0000 (23:45 +0000)
committerNeil Conway
Tue, 1 Mar 2005 23:45:00 +0000 (23:45 +0000)
doc/src/sgml/dml.sgml

index 91e7e137f186348d36069c4c264a431d77fb59f4..b70990bb86374355e0c1b79f666cee4e52439277 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  Data Manipulation
   
 
   
-   To create a new row, use the <literal>INSERT command.
-   The command requires the table name and a value for each of the
-   columns of the table.  For example, consider the products table
-   from :
+   To create a new row, use the <xref linkend="sql-insert"
+   xreflabel="sql-insert-title"> command.  The command requires the
+   table name and a value for each of the columns of the table.  For
+   example, consider the products table from :
 
 CREATE TABLE products (
     product_no integer,
@@ -98,7 +98,9 @@ INSERT INTO products DEFAULT VALUES;
     To do bulk loads, that is, inserting a lot of data,
     take a look at the 
     endterm="sql-copy-title"> command.  It is not as flexible as the
-    INSERT command, but is more efficient.
+    INSERT command, but is more efficient. Refer to
+     for more information on improving bulk
+    loading performance.
    
   
  
@@ -188,7 +190,7 @@ UPDATE products SET price = price * 1.10;
 
   
    You can update more than one column in an
-   <literal>UPDATE> command by listing more than one
+   <command>UPDATE> command by listing more than one
    assignment in the SET clause.  For example:
 
 UPDATE mytable SET a = 5, b = 3, c = 1 WHERE a > 0;
@@ -222,9 +224,11 @@ UPDATE mytable SET a = 5, b = 3, c = 1 WHERE a > 0;
   
 
   
-   You use the DELETE command to remove rows; the
-   syntax is very similar to the UPDATE command.
-   For instance, to remove all rows from the products table that have a price of 10, use
+   You use the 
+   xreflabel="sql-delete-title"> command to remove rows; the syntax is
+   very similar to the UPDATE command.  For
+   instance, to remove all rows from the products table that have a
+   price of 10, use
 
 DELETE FROM products WHERE price = 10;