账户中心 我的话题 我的评论 退出系统

请教,where条件查询,如果两个查询字段如何写?

瓦力科技-骑驴找马 发表于 : 2019-05-10 19:36

如:表名 persons

字段    类型    长度    作用    

id      int      10     主键       

name   vachar    20     姓名    

age     int      4      年龄    

addtime int      11    添加时间
classid int      10    班级id      

   请问,如何写?同时查询两个条件,neme字段和age,


这样写不正确

<?php

class indexController extends grace{

    public $tableName = 'persons';    

    public function index(){

          $this->db->where('name =? and age =?' , array($_GET['name']) and array($_GET['age']) )->->fetchAll();

请教~~如何写?

相关回复
加载中...
发表回复