select SUMでファジークエリを作成するにはどうすればよいですか?
この投稿は、hackol によって最終編集されました: 2014-05-12 23:39:33 $sql="select username,SUM(IF(types = 1, smoney, 0)) as t1 from Record where 1=1".$s1.";
結果は次のようになります: username = username の type フィールド = 1 が変数 $t1 クエリ条件
を変更したいのですが、その結果が次のようになることを望みます: レコード テーブル内の username = username の
と、nameuser の
タイプを含む regfrom フィールドの合計 フィールド = 1 の smoney フィールドが割り当てられる変数 $t1 SQL 文の書き方。データベースのスクリーンショット:
------解決策---------
$sql="select username, SUM(smoney) as t1 from record where username='$usename' or instr(regfrom, '$username') >0";
ログイン後にコピー