我试图从表中获取某些字段名称为整数的值。
下面是我的表
|--------------------|
| id | 1 | 2 |
|--------------------|
| 1 | 6 | 3 |
| 2 | 8 | 6 |
----------------------
我尝试使用普通php下面的代码,但是在codeigniter中它不能正常工作
mysqli_query($conn,'select `1`from table') //normal php working.
$this->db->query('select `1` from table'); // not working in ci.
答案 0 :(得分:1)
使用活动记录或SQL查询有两种方法来运行查询 试试这个
function get()
{
$query = $this->db->get('table',1);
return $query->result();
}
OR
$query=$this->db->query('select table.1 as one from table');
$query->result();
答案 1 :(得分:0)
您最后需要致电result()
:
//get results
$result = $this->db->query('select table.`1` from table')->result();
//parse results
foreach ($result as $row) {
echo $row; //complete row
//OR
echo $row->1; //cell value
}
答案 2 :(得分:0)
试试这个: -
$intake_so_far
或试试这个: -
$this->db->query('select 1 from table'); OR