home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / sql / insert.shr < prev    next >
Text File  |  1988-03-06  |  2KB  |  76 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.          INSERT
  7.  
  8.          The insert command is used to put data into your database.  
  9.  
  10.          SYNTAX:
  11.  
  12.          insert filename;
  13.  
  14.          EXAMPLE:
  15.  
  16.          insert cust;
  17.  
  18.          After the command is entered, you are prompted for each column 
  19.          in a row of data. The following would appear after typing "insert 
  20.          cust".
  21.  
  22.          insert cust;                
  23.          ESC = EXIT, <ENTER> = NULL VALUE  
  24.          code            : c1              
  25.          name            : Compugorp______ 
  26.          st              : WA              
  27.          rating          : 20              
  28.          ----                              
  29.          code            : __  <-- ESC pressed
  30.          1 rows inserted                   
  31.  
  32.  
  33.          MAKING CORRECTIONS
  34.  
  35.          Within each prompt for a column, the maximum number of 
  36.          characters or digits is represented by underlines.  The only key 
  37.          you can use for making corrections to a line you are on is by 
  38.          using the backspace key.  
  39.  
  40.          If you made a mistake on a previous column in the row you are 
  41.          on, or you want to cancel the current row, press the ESC key and 
  42.          you will exit from the insert command.  The current row is not 
  43.          added to the table.
  44.  
  45.          THE NULL ENTRY
  46.  
  47.          For the null entry, press the ENTER key at the first position of
  48.          the prompt.
  49.          
  50.          In some cases, you want to make the database realize that data 
  51.          is not appropriate for a certain column in a certain row.  It is 
  52.          different from a zero.  For example, in the manufacturing 
  53.          table, we have a column for the percent of defects.  For some of 
  54.          the items, defects are not tracked.  This is not to say that 
  55.          there are zero defects - we just don't have the data.  
  56.  
  57.          The where clause in the select command has special ways of 
  58.          handling the null.  You can select rows that just have nulls in 
  59.          a column or rows that do not have nulls in a column.  Any 
  60.          numeric operation (such as avg or min) skips a row where the 
  61.          numeric column is null. 
  62.          
  63.          TO EXIT THE INSERT MODE
  64.  
  65.          Press the ESC at the prompt for the first column in the row.
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.                                    INSERT-1
  74.  
  75.  
  76.