如何在 MySQL 中返回静态字符串?
为了在 MySQL 中返回静态字符串,可以使用 UNION。以下为语法 −
select 'yourStringValue1' as yourAliasName UNION select 'yourStringValue2' as yourAliasName;
让我们来实现以上语法以在 MySQL 中返回静态字符串。以下为查询 −
mysql> select 'HELLO' as staticStringsResult -> UNION -> select 'MySQL' as staticStringsResult;
这将生成以下输出 −
+---------------------+ | staticStringsResult | +---------------------+ | HELLO | | MySQL | +---------------------+ 2 rows in set (0.00 sec)
在某些 MySQL 版本中,以上语法不起作用,因此需要用括号括起来 −
mysql> (select 'HELLO' as staticStringsResult) -> UNION -> (select 'MySQL' as staticStringsResult);
这将生成以下输出 −
+---------------------+ | staticStringsResult | +---------------------+ | HELLO | | MySQL | +---------------------+ 2 rows in set (0.00 sec)
广告