ThinkPHP5經常使用功能和語法

 

獲取預編譯sqlsql

fetchSql用於直接返回SQL而不是執行查詢,適用於任何的CURD操做方法。 例如:fetch

$result = Db::table('think_user')->fetchSql(true)->find(1);
輸出result結果爲: SELECT * FROM think_user where id = 1this

獲取最後執行的sqlget

$this->getLastSql();編譯

table

Db('table')->getlastsql(); 或  Db::name('表名')->getlastsql();ast

方法

User::getLastSql();查詢

相關文章
相關標籤/搜索