DECLARE @x FLOAT = 1.0; SELECT SIN(2 * @x) + COS(3 * @x) + 4 - POWER(85, 3) AS f_value; If run through MS SQL Server Management Studio, the query completes successfully: If, however, this same query ...
MariaDb 10.11+ (at least) has the command; "STATUS" which works with and without a trailing ';' If I run this command on a MariaDb server locally or remotely using the CLI mysql client it responds ...