Posts by Gedor N. • 1 point
2 posts
-
-2
votes2
answers45
viewsA: sql records = 0
You can use the COALESCE SELECT COALESCE(count(*), 0) as total, municipio.nome FROM clientes right join municipio on clientes.codmunicipio = municipio.codigo group by codmunicipio…
-
0
votes1
answer55
viewsA: Error reading string in C
Hello! What is happening is that the input formatter %[^\n] does not save your enter typed, but it is still captured by your keyboard buffer. This buffer gets "polluted" and interferes with reading…