I want to calculate total Records in a table using MySQL. For this I am using command:
SELECT COUNT(*) as n from Dumpers;
This gives me:
n |
---|
2 |
In JSON:
[
{
"n": 2
}
]
Now, What should be the command to access this value ānā, i.e 2.
{{NumberOfDumpers.data}}
???