How can I distinguish function calls and field names using JSQLParser?
For example, the query SELECT COUNT(*) FROM db.table parses COUNT(*) as a field name and not a function call.
What do I need to do to change the SQL parsing to show COUNT(*) as a function call?
Thanks,
Max
You do not have sample code, so the code below is based on my guessing that you want to show that the count(*) is actually a function call only.