Home > database >  How to check Trino version with SQL query?
How to check Trino version with SQL query?

Time:09-06

Is there a SQL query to check the version of Trino? Couldn't find it in the docs

CodePudding user response:

You can use the version function:

SELECT version()
  • Related