Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Rahmah's avatar

query conversion manual

I have a few rows of a query which I run in MSSQL but I want to try converting the query into the procedure of laravel. anyone can help me?

general query :

select NM_PERUSAHAAN, count(*) as total_count, sum(FLAG_TERIMA) as approved, sum(1 - FLAG_TERIMA) as not_approved from MSTBEASISWAS group by NM_PERUSAHAAN;

0 likes
1 reply
tykus's avatar

What is wrong with the query as you have it written?

select NM_PERUSAHAAN, 
    count(*) as total_count,
    sum(FLAG_TERIMA) as approved,
    sum(1 - FLAG_TERIMA) as not_approved 
from MSTBEASISWAS
group by NM_PERUSAHAAN;

Please or to participate in this conversation.