• <bdo id='9eHpl'></bdo><ul id='9eHpl'></ul>

    <small id='9eHpl'></small><noframes id='9eHpl'>

      <i id='9eHpl'><tr id='9eHpl'><dt id='9eHpl'><q id='9eHpl'><span id='9eHpl'><b id='9eHpl'><form id='9eHpl'><ins id='9eHpl'></ins><ul id='9eHpl'></ul><sub id='9eHpl'></sub></form><legend id='9eHpl'></legend><bdo id='9eHpl'><pre id='9eHpl'><center id='9eHpl'></center></pre></bdo></b><th id='9eHpl'></th></span></q></dt></tr></i><div id='9eHpl'><tfoot id='9eHpl'></tfoot><dl id='9eHpl'><fieldset id='9eHpl'></fieldset></dl></div>
        <legend id='9eHpl'><style id='9eHpl'><dir id='9eHpl'><q id='9eHpl'></q></dir></style></legend>
      1. <tfoot id='9eHpl'></tfoot>

        选择没有重复条目的一行

        时间:2023-10-26
          <tbody id='Kokg6'></tbody>
        • <bdo id='Kokg6'></bdo><ul id='Kokg6'></ul>

          <small id='Kokg6'></small><noframes id='Kokg6'>

            <i id='Kokg6'><tr id='Kokg6'><dt id='Kokg6'><q id='Kokg6'><span id='Kokg6'><b id='Kokg6'><form id='Kokg6'><ins id='Kokg6'></ins><ul id='Kokg6'></ul><sub id='Kokg6'></sub></form><legend id='Kokg6'></legend><bdo id='Kokg6'><pre id='Kokg6'><center id='Kokg6'></center></pre></bdo></b><th id='Kokg6'></th></span></q></dt></tr></i><div id='Kokg6'><tfoot id='Kokg6'></tfoot><dl id='Kokg6'><fieldset id='Kokg6'></fieldset></dl></div>

              <tfoot id='Kokg6'></tfoot>
              • <legend id='Kokg6'><style id='Kokg6'><dir id='Kokg6'><q id='Kokg6'></q></dir></style></legend>
                  本文介绍了选择没有重复条目的一行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在 mysql 表 info 我有:

                  In mysql table info i have :

                  Id、姓名、城市、日期、状态

                  Id , Name , City , date , status

                  我想从信息"中选择所有名字进行查询

                  I want to select all names from "info" Making the query

                  $query = mysql_query("SELECT name FROM info WHERE status = 1 ORDER BY id") 
                           or die(mysql_error());
                  
                  while ($raw = mysql_fetch_array($query)) 
                  {
                    $name = $raw["name"];
                    echo ''.$name.'<br>';
                  }
                  

                  好吧,结果是它返回了所有条目.我想回显没有重复的所有条目.

                  Well, the result is that it returns all the entries. I want to echo all the entries without duplicates.

                  说:在原始name"下,我们已经插入了 10 次John"这个名字.
                  我只想回声一次.这可能吗?

                  Saying: under raw "name" we have inserted the name "John" 10 times.
                  I want to echo only one time. Is this possible?

                  推荐答案

                  很简单:

                  SELECT DISTINCT name FROM info WHERE status = 1 ORDER BY id
                  

                  SQL 关键字 DISTINCT 可以解决问题.

                  The SQL keyword DISTINCT does the trick.

                  这篇关于选择没有重复条目的一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Microsoft SQL Server 从选择查询插入 下一篇:MySQL 错误:“where 子句"中的未知列

                  相关文章

                      <small id='LUH80'></small><noframes id='LUH80'>

                    1. <tfoot id='LUH80'></tfoot>
                    2. <i id='LUH80'><tr id='LUH80'><dt id='LUH80'><q id='LUH80'><span id='LUH80'><b id='LUH80'><form id='LUH80'><ins id='LUH80'></ins><ul id='LUH80'></ul><sub id='LUH80'></sub></form><legend id='LUH80'></legend><bdo id='LUH80'><pre id='LUH80'><center id='LUH80'></center></pre></bdo></b><th id='LUH80'></th></span></q></dt></tr></i><div id='LUH80'><tfoot id='LUH80'></tfoot><dl id='LUH80'><fieldset id='LUH80'></fieldset></dl></div>
                      <legend id='LUH80'><style id='LUH80'><dir id='LUH80'><q id='LUH80'></q></dir></style></legend>

                        <bdo id='LUH80'></bdo><ul id='LUH80'></ul>