I did a normal count query for PostgreSQL. I am calling it from python. The query goes like:
SELECT COUNT(CAST(cust_ID AS int)),CAST(cust_ID AS int)
FROM OF_table
GROUP BY CAST(cust_ID AS int)
ORDER BY CAST(cust_ID AS int)
The output has the value like:
245L 10
Can someone tell me if the 'L' means lines? I do not understand the unit 'L'.