[MySQL] 基本メモ: レコードの抽出

条件の例

  • value >= 10
  • value = 10
  • value != 10
  • value <> 10
  • value between 5.0 and 15.0 (5.0と15.0は含まれる)
  • color != “red”
  • color in(‘red’,’blue’)  (どれか1つにマッチ)
  • created > ‘2015-05-01 02:00:00’ (日時判定)
  • email like ‘%@google.com’
  • email like ‘%@google.___’
  • ‘%’は任意の0文字以上の文字列を示す。
  • ‘_’は任意の1文字を示す。
  • value > 5 and color = ‘white’ (and条件)
  • value > 5 or color = ‘white’ (or条件)