MS SQL query not run

Hello,

I have a table name “ABC” in MS SQL. Table contain the fields abc-name, abc-type. Now whenever I tried to fire query in dashboard variable or table visualization grafana return the error message that “column name type is not exist in database” while column name in table is abc-type.

Can anyone help me on it?

Welcome @MetroN

Put a bracket around those columns

Select [abc-name], [abc-type]

Thanks @yosiasz. It works.

1 Like