1

I have this query:

Select Number from CardChoice

it returns

Number 

1
2 
3

How can I add text to that so it returns

Batch

Batch 1
Batch 2
Batch 3

1 Answers1

2

You can use the || operator for concatenate string

 Select 'Batch '  || Number as Batch from CardChoice
ScaisEdge
  • 131,976
  • 10
  • 91
  • 107