By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
select service_level from sysibmadm.env_inst_info;
SERVICE_LEVEL |
---|
DB2 v11.1.4.4 |
values (1); --1row, 1col
1 |
---|
1 |
values 1; --1row, 1col
1 |
---|
1 |
values 6,7,8; -- 1row, 3col
1 |
---|
6 |
7 |
8 |
values (6),(7),(8); -- 3row, 1col
1 |
---|
6 |
7 |
8 |
values (6,6,6),(7,7,7), (8,8,8); -- 3row, 3col
1 | 2 | 3 |
---|---|---|
6 | 6 | 6 |
7 | 7 | 7 |
8 | 8 | 8 |