Blogger Information
Blog 14
fans 1
comment 0
visits 25826
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Thinkphp5.1数据库增删改查操作——select()
centcool的博客
Original
1558 people have browsed it

一、多条数据查询select()方法,返回的是一个二维数组,如果没有数据返回的是空数组。

二、对多条数据进行查询的结果集,需要进行遍历才可以拿到。

<?php
namespace app\index\controller;
use think\Db;

/*
	查询构造器
	准备工作:app_debug = true; app_trace = true;
*/

class Index{
	public function index(){
		return Db::table('student')
			->where('id',1)
			->value('name');		
	}
	public function select(){
		$res =	Db::table('student')
				->field('id,name,course,grade') //指定查询字段				
				->where([
					['course','=','php'],
					['grade','>=',86]
				])
				->select();
		if (empty($res)){
			return '没有找到符合条件的记录';
		}else{    
		    //对多条数据进行查询的结果集,需要进行遍历才可以拿到
			foreach ($res as $row) {
				dump($row);
			}
		}
	}
}


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post