SELECT * FROM tbl_brand where state = :state order by seq desc limit :offset, :limit
SELECT * FROM tbl_brand where state = :state ORDER BY seq DESC LIMIT :offset, :limit
</select>
<selectid="getBrand">
SELECT * FROM tbl_brand
...
...
@@ -55,7 +55,7 @@
DELETE FROM tbl_news_brand_rela WHERE news_id = :news_id
</select>
<selectid="getBrandByName">
SELECT * FROM `tbl_brand` WHERE state = :state AND `name` LIKE :name ORDER BY create_time DESC
SELECT * FROM `tbl_brand` WHERE state = :state AND `name` LIKE :name ORDER BY seq DESC, create_time DESC
</select>
<selectid="getSameNewsByNewsID">
SELECT news_id FROM tbl_news_brand_rela WHERE brand_id IN (SELECT brand_id FROM tbl_news_brand_rela WHERE news_id = :news_id) AND news_id <> :news_id