أدوات المطور
مصغر SQL
صغّر SQL إلى استعلام مضغوط من سطر واحد.
الإدخال
مصغر SQL
SQLمصغرquerydatabase
الإخراج
Minified SQL
Original chars
215
Minified chars
215
select users.id, users.email, count(orders.id) as order_count from users left join orders on orders.user_id = users.id where users.status = 'active' group by users.id, users.email order by order_count desc limit 10;

