Is there an equivalent of DUAL in SQL server?
11/10/2018

There is no equivalent of Dual in SQL Server. This is because in SQL Server there is no need to select from a table like in Oracle.

For example

Oracle:

Select col1, col2 from dual

SQL Server:

Select Col1, Col2

By using keyintelligence.uk, you agree to our use of cookies to enhance your experience.