Seti Net
Seti Net

Reputation: 743

SQL - How to format SELECT

How to cause simple text to appear in the results of a SELECT statement? It would be great if something like a comment could be made to appear in the data set generated by a SELECT statement. Is this possible?

Upvotes: 0

Views: 55

Answers (1)

Rahul
Rahul

Reputation: 77876

Do you mean something like

select 'This Is A Comment' from some_table;

(OR) just

select 'This Is A Comment';

Upvotes: 2

Related Questions