Tell me, please, how in SQL you can display a column that includes a specified number of lines with its text (the text must be static). Let me explain, it is necessary that to the left of the column (see screenshot) there appears another column in which there were 4 lines with explanations for each digit:
Thanks in advance!
UPD: You need something like the one on the screenshot below, only the text in each line is different. Here I just output it via (SELECT 'One'), but this way it’s impossible to output more than 1 different text, i.e. (SELECT ('One', 'Two', 'Three', 'Four')) does not work
UPD 2: Here, what should happen on the output - painted in paint. The problem is that the first column needs to be done in SQL. Text One, Two, Three, Four must be in the query itself.