Select one row without duplicate entries(选择没有重复条目的一行)
问题描述
在 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.
这篇关于选择没有重复条目的一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:选择没有重复条目的一行
基础教程推荐
- Sql Server 字符串到日期的转换 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01