select*from `users` where `users`.`id` ='8444'and `users`.`deleted_at` isnull limit 1710μsmoms_dev
Bindings
0: 8444
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` =8444and `sender_type` ='user') or (`recipient_id` =8444and `recipient_type` ='user')) and `status` =1280μsmoms_dev
Bindings
0: 8444
1: user
2: 8444
3: user
4: 1
selectcount(*) as aggregate from `users` where `id` !=8444and `id` in (1529, 385, 8669, 8444, 9291, 2319, 8444, 8444, 8444, 8444, 1338, 8444, 8444, 14908) and `users`.`deleted_at` isnull230μsmoms_dev
Bindings
0: 8444
1: 1529
2: 385
3: 8669
4: 8444
5: 9291
6: 2319
7: 8444
8: 8444
9: 8444
10: 8444
11: 1338
12: 8444
13: 8444
14: 14908
Hints
0: The != operator is not standard. Use the <> operator to test for inequality instead.
select*from `users` where `id` !=8444and `id` in (1529, 385, 8669, 8444, 9291, 2319, 8444, 8444, 8444, 8444, 1338, 8444, 8444, 14908) and `users`.`deleted_at` isnull limit 16offset0310μsmoms_dev
Bindings
0: 8444
1: 1529
2: 385
3: 8669
4: 8444
5: 9291
6: 2319
7: 8444
8: 8444
9: 8444
10: 8444
11: 1338
12: 8444
13: 8444
14: 14908
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` =3435and `geo_city`.`id` isnotnull limit 1170μsmoms_dev
Bindings
0: 3435
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` =8444and `childs`.`user_id` isnotnulland `childs`.`deleted_at` isnull5.37msmoms_dev
Bindings
0: 8444
Hints
0: Use SELECT * only if you need all columns from table
select*from `users_stats` where `users_stats`.`user_id` =8444and `users_stats`.`user_id` isnotnull limit 1210μsmoms_dev
Bindings
0: 8444
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` =8444and `sender_type` ='user') or (`recipient_id` =8444and `recipient_type` ='user')) and `status` =1380μsmoms_dev