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 命令解决方案。我想检索所有具有相同属性的行并列出它们。我尝试过分组,但它会将结果合并到每个选定字段的一行中。我想检索多个结果来做类似的事情,而不是对每个“颜色”进行单个查询:
好吧,查询会产生一个矩形结果集,而不是一个分层的结果集,但这样的事情会起作用:
SELECT Color, Make FROM Cars ORDER By Color, Make
然后,当您显示结果时,您Color只能在它更改时显示。
Color