1-查詢數據庫

一、經過name排序查詢全部 //select * from Country orderby name; $data = Country::find()->orderBy('name')->all() 二、以字段查詢一條記錄 //select * from Country where name = 'US' limit 1; $data = Country::findOne('US'); 三
相關文章
相關標籤/搜索