この記事では主に MySQL SELECT 構文の簡単な分析について説明します。MySQL データベースはよく使われるデータベースであり、その関連アプリケーションも多くの注目を集めています。そのため、次の記事は主に MySQL SELECT 構文について説明します。簡単な分析。
$sql="select * from article where id=1" 和 $sql="select * from article where id=1",都可以得到正确的结果,但有时分开写或许能更明了一点,特别是当sql语句比较长时
は
で使用できます。 /code ><code class="sql plain">達成するには
可以用
in
来实现
$sql="select * from article where id in(1,3,5)"
3、使用concat连接查询的结果
$sql="select concat(id,"-",con) as res from article where id=1"
返回"1-article content"
4、使用locate
用法:<br/>
select locate("hello","hello baby");
存在返回1,不存在返回0
5、使用group by
group by 是把相同的结果编为一组<br/>
exam:$sql="select city ,count(*) from customer group by city";
3. concat 接続を使用したクエリの結果
$sql="select city,count(*),min(birth_day) from customer group by city having count(*)>10";
4. ロケートを使用します
使用法: </p>
$sql="select distinct city from customer order by id desc";
group by は、同じ結果をグループにグループ化することです<p>
$sql="select * from article limit 100,-1";
group by は AVG()、MIN()、MAX()、SUM()、COUNT() とともによく使用されます
$sql="select user_name from user u,member m where u.id=m.id and m.reg_date>=2015-08-13 order by u.id desc"
以上がMySQL select ステートメントの 10 の簡単な使用例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。