Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在Mysql中我们可以做
SELECT 'nathan' AS name
有一个记录的结果集:
name nathan 但是我怎么能让结果表在里面有多个记录,这样结果表就会像:
名字 内森· 乔什· 豪
PS。记录在数据库中不存在,并且在运行查询后也不会存在于数据库中。
谢谢你的帮忙
您可以使用 UNION ALL 查询:
SELECT 'nathan' AS name union all SELECT 'josh' AS name union all SELECT 'hao' AS name
请参阅带有演示的 SQL Fiddle