加载中...

fetchSql


fetchSql用于直接返回SQL而不是执行查询,适用于任何的CURD操作方法。 例如:

echo Db::table('think_user')->fetchSql(true)->find(1); 

输出结果为:

SELECT * FROM think_user where `id` = 1 

还没有评论.