我現在有這樣的數據在表格中顯示從MySQL這樣的數據:一種更好的方式使用PHP
id | type
------------
1 | 1
2 | 1
3 | 2
4 | 2
5 | 3
6 | 3
6 | 3
我需要這樣的顯示數據:
Type 1
--All type ones go here
Type 2
-- All type twos go here
Type 3
All type threes go here
我這樣做的方式它現在是通過使用兩個單獨的SQL語句和循環。
select distinct type as type from table
while()
{
select type from table where type = type;
while()
{
}
}
有沒有更好的方法來做到這一點,並得到我想要的結果,或者是使用兩個循環的唯一方法?
輸出請出示您的實際預期的結果。 – hims056
如何只做一個查詢'select * from table order by type' –
@ hims056它在那裏。第二件事與藍色背景。 – Norman