SELECT statement can be executed without FROM clause:
declare @var int = 17; SELECT @var as c1, @var + 2 as c2, 'third' as c3
In this case, one row with values/results of expressions are returned.