Halo, first, i say thank you for helping me solve my problem before. I'm really newbie using Postgresql.
now i have new problem, i do select statement like this one :
select * from company where id=10;
when i see the query in pg_stat_statements
, i just get the query like this :
select * from company where id=?;
from the result the value of id is missing, how i can get the complete query without missing the value??
Thank you :)