Help for this page

Select Code to Download


  1. or download this
    SELECT string
      FROM some_table
     WHERE string = ?
        OR off_by( 1, string, ? )
        OR off_by( 2, string, ? )
    
  2. or download this
    string char(25)
    match  char(25)
    off_by int(1)
    
  3. or download this
    SELECT string
      FROM some_table
     WHERE string = ?
        OR ( match = ? and off_by = 1 )
        OR ( match = ? and off_by = 2 )