Feb 1, 2001 #1 PaullyB Programmer Feb 1, 2001 5 US I am new to SQL Server. I am curious if there is a SQL Server equivalent to the DUAL table in Oracle? Thanks, PB
I am new to SQL Server. I am curious if there is a SQL Server equivalent to the DUAL table in Oracle? Thanks, PB
Feb 1, 2001 #2 wushutwist Programmer Aug 3, 2000 984 US There not really a similar psuedotable in SQL Server that I know of, but you can achieve the same effect. Oracle Code: SELECT sysdate FROM dual; SQL Server T-SQL Code: SELECT getdate() GO Wushutwist Upvote 0 Downvote
There not really a similar psuedotable in SQL Server that I know of, but you can achieve the same effect. Oracle Code: SELECT sysdate FROM dual; SQL Server T-SQL Code: SELECT getdate() GO Wushutwist
Feb 2, 2001 #3 TomSark MIS Oct 19, 2000 448 US In SQL Server, you don't have to specify FROM DUAL; Tom Davis tdavis@sark.com http://www.sarkdallas.com Upvote 0 Downvote
In SQL Server, you don't have to specify FROM DUAL; Tom Davis tdavis@sark.com http://www.sarkdallas.com