Help for this page

Select Code to Download


  1. or download this
    SELECT *
    FROM tablename
    WHERE key = 12345
    ORDER BY version;
    
  2. or download this
    SELECT *
    FROM tablename
    WHERE key LIKE '12345,%'
    ORDER BY key;
    
  3. or download this
    SELECT *
    FROM tablename o
    ...
            FROM tablename i
            WHERE i.key = o.key
    )
    
  4. or download this
    SELECT *
    FROM tablename
    ...
            FROM tablename
            WHERE key LIKE '$key,%'
    )