在數據庫中有title,content字段,如果有兩個相同的title,都叫ABC,而我想要的是第一個ABC對應的content,但是每次用where title="ABC";匹配到的都是第二個content內容,可不可以改變匹配的順序呢?
content一樣不一樣?
如果不一樣,可以這麼寫
select title from table where title = 'ABC' order by content desc
select title from table where title = 'ABC' order by content
兩者之一