0
限制查詢我想要做一個限制相對於ID是這樣的:如何通過ID在MySQL
My table:
id id_propertie description
------------------------------
1 1 Some text
2 1 Some text
3 2 Some text
4 2 Some text
5 2 Some text
6 3 Some text
------------------------------
我想這
SELECT * FROM propertie limit 2
id id_propertie description
------------------------------
1 1 Some text
2 1 Some text
3 2 Some text
4 2 Some text
6 3 Some text
------------------------------
你試過了什麼。 – polka