Reputation: 6975
When i use int
in where condition it gives me result but when i use string
it gives me error.
Gives result: select * from dbname where version = 4
Gives Error: select * from dbname where name = abc
or
select * from dbname where name = 'abc'
Upvotes: 1
Views: 234
Reputation: 3671
What about :
select * from dbname where name = 'abc'
The documentation on InfluxDB query language
Upvotes: 1