Saturday, December 2, 2017

What is the Oracle equivalent of “Dual” table in Sql Server


In SQL Server there is no dual you can simply do
select getdate()


No comments:

Post a Comment

Recently Executed queries

 SELECT     txt.TEXT AS [SQL Statement],     qs.EXECUTION_COUNT [No. Times Executed],     qs.LAST_EXECUTION_TIME AS [Last Time Executed],   ...