in SQL Server is possible to make a select without reference to a table. something like
Select 1.2 +3, 'my dummy string'
As Oracle does not allow a SELECT without a FROM, I use the dual table for this type of operations, ie something like
Select 1,2+3, 'my dummy string' FROM DUAL
There is a better way of doing this type of querys? it is good practice to use the dual table?
thanks in advance.