I specified a directory and created a file that i can query.
select count(*) from bla.
The value i get back is however not a number. it returns the number/result but also other things.
[{"COUNT(*)":"2106"}]
I would have liked to only return 2106 and/if possible bind "ID" to Units if that is possible.
select count(*) as "id" from table where id = 55;
Anyone know how i can solve this?
select count(*) from bla.
The value i get back is however not a number. it returns the number/result but also other things.
[{"COUNT(*)":"2106"}]
I would have liked to only return 2106 and/if possible bind "ID" to Units if that is possible.
select count(*) as "id" from table where id = 55;
Anyone know how i can solve this?
it makes impossible to quote properly and it looks like I'm talking to myself, at one point noone understands to what this particular answer might refer...
Comment