Dear Community,
I wrote a simple SQL query that outputs phone-numbers as a string formatted like ‘+4912345678’.
When I create a panel, visualized as a table Grafana trims my leading ‘+’ or ‘00’ characters from the result field. I tried several things but cannot figure out on how to get the full string displayed.
This is the grafana output:
This is the actual SQL result:
This is my query
Select TOP(20)
FORMAT(CallReceived,‘HH:mm’) AS Call,
PhoneNumber AS Number,
ContactCompany AS Company,
ContactName AS Contact,
FROM
X
Order BY CallReceived DESC