Help for this page

Select Code to Download


  1. or download this
    SELECT TOP 10 col
      FROM table
    
  2. or download this
    SELECT col
      FROM table
     FETCH FIRST 10 ROWS ONLY
    
  3. or download this
    SELECT col
    FROM table A
    ...
                FROM table B
                WHERE A.col < B.col)
    ORDER BY col DESC