标签:
query(update goods set is_delete=1 where goods_id=13)总是出错??为什么,
excute(update goods set is_delete=1 where
goods_id=13)一次就解决问题了,
$result = $model ->execute( ‘update mytable set name=aaa where id=11‘); //将返回总行数
query()方法将返回数据集:
$result = $model ->query( ‘select * from mytable‘ ); //将返回array()
大家都知道,thinkphp中execute()和query()方法都可以在参数里直接输入sql语句。但是不同的是execute()通常用来执行insert或update等sql语句,而query常用来执行select等语句。
execute()方法将返回影响的记录数,如果执行sql的select语句的话,返回的结果将是表的总记录数:
标签:
原文地址:http://www.cnblogs.com/haveadream435/p/5759140.html