Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
即使有许多相同的类型,每个条目只请求一次列条目的 SQL 语句是什么?
我正在使用 MySQL(最新版本)。
你的意思是像DISTINCT这样的东西吗?
它只显示每个条目一次
http://dev.mysql.com/doc/refman/5.5/en/distinct-optimization.html
另一种可能性是 GROUP BY 根据条目名称创建组
也许您正在寻找SELECT DISTINCT?它使得如果您的表包含条目:
SELECT DISTINCT
word ---- hi hi hello orange hi banana
查询select distinct word from tablename将为您提供:
select distinct word from tablename
word ---- hi hello orange banana
这是一个快速教程和文档。