数据库原生sql写法(返回值为影响行数)
//执行数据库操作
$res = db()->execute($sql);
1.查询操作
Db::query('select * from user where id<=? and id>=?',[8,5]);
//?为占位符,8和5为对应参数
Db::query('select * from user where id=:id',['id'=>8]);
例:
$id = 1;
$data = Db::query("select * from user where id =?",[$id]);
2.写入操作
Db::execute('insert into user (id, name) value (?, ?)',[2,'zhangsan']);
Db::execute('insert into user (id,name) value (:id, :name)',['id'=>2,'name'=>'zhangsan']);
3.修改
Db::execute("update user set age='20' where id=9");
4.删除
Db::execute("delete from user where id=20");
Db::execute("delete from user where id>?",[20]);
Db::execute("delete from user where id=:id",['id'=>20]);
//打印出执行的sql语句(打印出最后一条sql语句)
echo Db::getLastSql();
- 空白目录
- 关于页面跳转跟重定向
- thinkphp5return的问题
- thinkphp5权限auth
- thinkphp5关联查询多表查询join
- javascript
- 数据库命令行操作
- php间隔一段时间自动执行
- PHP字符串首尾留N位,中间替换成*号
- tp5获取当前域名
- PHP常用函数
- 注册发送短信验证的接口详解
- php可逆加密解密
- 配置本地虚拟主机
- thinkphp5跨控制器调用
- thinkphp5框架加载流程
- thinkphp5路由详解
- thinkphp5功能集合
- thinkphp5数据库操作
- delete,put类型
- tp5数据库查询
- tp5数据库增删改
- 事务机制
- thinkphp模型model新建和查询
- tp5model的新增
- tp5model修改
- tp5model删除和软删除
- tp5视图
- tp5API