select*from `users` where `users`.`id` ='1464'and `users`.`deleted_at` isnull limit 1860μsmoms_dev
Bindings
0: 1464
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` =1464and `sender_type` ='user') or (`recipient_id` =1464and `recipient_type` ='user')) and `status` =1470μsmoms_dev
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 `childs` where `childs`.`user_id` =1464and `childs`.`user_id` isnotnulland `childs`.`deleted_at` isnull9.13msmoms_dev
Bindings
0: 1464
Hints
0: Use SELECT * only if you need all columns from table
select*from `users_stats` where `users_stats`.`user_id` =1464and `users_stats`.`user_id` isnotnull limit 1590μsmoms_dev
Bindings
0: 1464
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` =1464and `sender_type` ='user') or (`recipient_id` =1464and `recipient_type` ='user')) and `status` =1380μsmoms_dev