thinkphp 里sql 语句如何解读????
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp 里sql 语句如何解读????相关的知识,希望对你有一定的参考价值。
thinkphp里sql语句为啥这样写,怎么解读。。。。。M('fields')->where('(model=\'\'ormodel=\'customer\')andis_validate=1andis_main=1')->select();... thinkphp 里 sql 语句为啥这样写,怎么解读。。。。。 M('fields')->where('(model = \'\' or model = \'customer\') and is_validate=1 and is_main=1')->select(); 展开
参考技术A 这个不是原生写法,这是tp固有的写法,里面对语句做了封装,就是查询fields表里条件是model为空或其他条件符合的值。明白了吧!ThinkPHP3.2.3批量执行sql语句(带事务)
/**
* 事务封装方法
* @access public 将此方法放入框架model.class.php中
* @param array $sqls 要执行的sql数组或语句
* @param array $vals sql语句中要替换的值
* @return boolean
*/
public function transExecuteSql($sqls)
{
$this->startTrans();
if(is_array($sqls))
{
foreach($sqls as $k => $sql)
{
$result=$this->db->execute($sql);
if(!$result)
{
$this->rollBack();
return false;
}
}
}else{
$result=$this->db->execute($sqls);
if(!$result)
{
$this->rollBack();
return false;
}
}
$this->commit();
return true;
}
以上是关于thinkphp 里sql 语句如何解读????的主要内容,如果未能解决你的问题,请参考以下文章