6 lines
179 B
MySQL
6 lines
179 B
MySQL
|
|
select 'This is the first line.' from sysibm.sysdummy1
|
||
|
|
union
|
||
|
|
select 'This is the second line.' from sysibm.sysdummy1
|
||
|
|
union
|
||
|
|
select 'This is the third line.' from sysibm.sysdummy1;
|