Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Select Id, Column1
From TableName
Union All
Select Id, Column2
From TableName
Union All
Select Id, Column3
From TableName
Order By Id
SELECT
CASE Num
WHEN 1 THEN Col1
WHEN 2 THEN Col2
WHEN 3 THEN Col3
...
END
FROM
YourTable T
CROSS JOIN (SELECT Num = 1 UNION SELECT 2 UNION SELECT 3 ...) X