我不想在我的火库中写一个字段。
我试过了SELECT a.id, a.product,
b.price as 'price'
FROM tb_product a
join (select id_product, min(price)
from tb_product_store group by id_product) b
on b.id_product = a.id
whera a.active = 1
order by a.product
但它没有用,
尝试@Exclude
它也不起作用。
当我使用@set:Exclude var uId: String = ""
时,我可以在阅读时排除字段。