This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
The highly anticipated Alteryx Community tradition is back! We hope you'll join us!
Learn MoreHello Alteryx-Community,
my issue sounds quite simple, but is a challange for me. How do I get the version of a mysql- and mssql-connection? I presume a query without a "From"-Clause in a Input Data-Tool is not allowed. Thus I get an error message for a sql-statement, which works in the Mysql Workbench. Do you have a solution for me? I need the version-number for a data-output, so a pre- or post-sql-statement might be not the right solution.
Solved! Go to Solution.
Select @@version From TABLENAME
seems to work. Set the recordlimit to 1 otherwise you will get the version for every line in that table.
Ben
Thank you. This is it.