Thinkphp随堂笔记sql查询语句

Posted 我把所有的财富都放进博客里了,想要就进来拿吧

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thinkphp随堂笔记sql查询语句相关的知识,希望对你有一定的参考价值。

THINKphp中sql提供以下查询语句

//字符串sql安全系数太低

例如配合M方法使用:

$user = M(‘User‘);
//var_dump($user->where(‘id=1 || user="蜡笔小新"‘)->select());

//使用数组索引的方式安全得多
//$condition[‘id‘]=1;
//$condition[‘user‘]="蜡笔小新";
//$condition[‘_logic‘]=‘OR‘;
//var_dump($user->where($condition)->select());


//使用对象的方式存储条件 和使用数组的方式相同,安全系数相同
//$condition=new \stdClass();
//$condition->id=1;
//$condition->user="蜡笔小新";
//$condition->_logic="OR";
//var_dump($user->where($condition)->select());

 
















以上是关于Thinkphp随堂笔记sql查询语句的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp-查询语句

怎样在thinkphp里面执行原生的sql语句

TP sql语句

谁能帮忙提供详细的在ThinkPHP中连表查询的SQL语句,谢谢了

thinkphp的where方法的使用

ThinkPHP执行原生的SQL语句