fetchSql()
这个执行返回的是sql的语句 不是执行结果。
可以用于方便调试sql
$result = M('User')->fetchSql(true)->find(1);
输出result结果为: SELECT * FROM think_user where id = 1
SELECT * FROM think_user where id = 1