get last query codeigniter code example

Example 1: codeigniter print last sql query

print_r($this->db->last_query());

Example 2: codeigniter get last query

$this->db->last_query();

Returns the last query that was run (the query string, not the result). Example:
$str = $this->db->last_query();

// Produces: SELECT * FROM sometable....

Example 3: print last query in codeigniter

We can get last executed query using last_query() function of db class in codeigniter. It is a very simple to use $this->db->last_query() function to see SQL statements of last executed query in php codeigniter app. You have to simple code that function after your main query that you wanted check 
$this->db->last_query()

Example 4: print last executed db query codeigniter

$this->db->last_query();

Example 5: get last row codeigniter

$query = $this->db->query("SELECT * FROM date_data ORDER BY id DESC LIMIT 1");
$result = $query->result_array();
return $result;

Tags:

Php Example