Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. utag/admin/utag/load. ERR: SELECT
  2. u.utag_id,
  3. u.imei,
  4. u.last_online, u.last_speed, u.last_acc, u.last_igni, u.last_supply, u.last_gps, u.last_gsm,
  5. IF(u.last_coords,
  6. CONCAT(ST_X(u.last_coords), ',', ST_X(u.last_coords)), CONCAT(u.last_lat, ',', u.last_lon)
  7. ) AS coords,
  8. u.user_control,
  9. u.status,
  10. u.profile_id, p.profile_name,
  11. u.vehicle_id,
  12. IF(u.phone, u.phone, s.number) AS phone, c.carrier_name, s.cell_apn_id,
  13. m.maker_name, m.model
  14. FROM main.utag AS u
  15. LEFT JOIN main.sim AS s ON (u.sim_id = s.sim_id)
  16. LEFT JOIN main.cell_apn AS ca ON (s.cell_apn_id = ca.cell_apn_id)
  17. LEFT JOIN cell.carrier AS c ON (ca.cell_carrier_id = c.carrier_id)
  18. LEFT JOIN main.maker AS m ON (u.maker_id = m.maker_id)
  19. LEFT JOIN main.profile AS p ON (u.profile_id = p.profile_id)
  20. WHERE u.status <> 3 AND u.profile_id = cris
  21. LIMIT 10
  22. Unknown column 'cris' in 'where clause' parsererror SyntaxError: Unexpected token S in JSON at position 0
  23. at parse (<anonymous>)
  24. at Qb (jquery-3.2.1.min.js:4)
  25. at A (jquery-3.2.1.min.js:4)
  26. at XMLHttpRequest.<anonymous> (jquery-3.2.1.min.js:4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement