select*from `users` where `users`.`id` ='20852'and `users`.`deleted_at` isnull limit 1720μsmoms_dev
Bindings
0: 20852
Hints
0: Use SELECT * only if you need all columns from table
1:LIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan
select `sender_id`, `recipient_id` from `friendships` where ((`sender_id` =20852and `sender_type` ='user') or (`recipient_id` =20852and `recipient_type` ='user')) and `status` =1810μsmoms_dev
Bindings
0: 20852
1: user
2: 20852
3: user
4: 1
selectcount(*) as aggregate from `users` where `id` !=20852and `id` in (20422, 20596, 20852, 20852) and `users`.`deleted_at` isnull290μsmoms_dev
Bindings
0: 20852
1: 20422
2: 20596
3: 20852
4: 20852
Hints
0: The != operator is not standard. Use the <> operator to test for inequality instead.
select*from `users` where `id` !=20852and `id` in (20422, 20596, 20852, 20852) and `users`.`deleted_at` isnull limit 16offset0270μsmoms_dev
Bindings
0: 20852
1: 20422
2: 20596
3: 20852
4: 20852
Hints
0: Use SELECT * only if you need all columns from table
1: The != operator is not standard. Use the <> operator to test for inequality instead.
2:LIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan
select*from `geo_city` where `geo_city`.`id` =5252and `geo_city`.`id` isnotnull limit 1190μsmoms_dev
Bindings
0: 5252
Hints
0: Use SELECT * only if you need all columns from table
1:LIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan
select*from `childs` where `childs`.`user_id` =20852and `childs`.`user_id` isnotnulland `childs`.`deleted_at` isnull6.33msmoms_dev
Bindings
0: 20852
Hints
0: Use SELECT * only if you need all columns from table
select*from `users_stats` where `users_stats`.`user_id` =20852and `users_stats`.`user_id` isnotnull limit 1240μsmoms_dev
Bindings
0: 20852
Hints
0: Use SELECT * only if you need all columns from table
1:LIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan
selectcount(*) as aggregate from `friendships` where ((`sender_id` =20852and `sender_type` ='user') or (`recipient_id` =20852and `recipient_type` ='user')) and `status` =1320μsmoms_dev