Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →CodeIgniter query builder, joins, complex queries.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -27% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -44% | 0% |
| case-12 | ✗→✓ | ▲ Improved | -32% | 0% |
| case-03 | ✓→✓ | = Same ✓ | -21% | 0% |
| case-04 | ✓→✓ | = Same ✓ | -36% | 0% |
php<?php $users = $this->db->table('users') ->where('status', 'active') ->orderBy('created_at', 'DESC') ->get() ->getResult();
php<?php $orders = $this->db->table('orders o') ->join('users u', 'u.id = o.user_id') ->join('products p', 'p.id = o.product_id') ->select('o.*, u.name as user_name, p.name as product_name') ->where('o.status', 'completed') ->get() ->getResult();
php<?php $this->db->table('users') ->groupStart() ->where('role', 'admin') ->orWhere('role', 'moderator') ->groupEnd() ->where('status', 'active') ->get();
Other measured skills in the registry, with their headline benchmark lift.