I was trying to type this:
select [ORDERID]
from [dbo].[ORDERSDETAIL]
and got this instead:
select o.[ORDERID]
from [dbo].[ORDERSDETAIL]
SQL Prompt created a prefix for the select elements but did not specify one for the from elements.
This is in Query Analyzer.
select [ORDERID]
from [dbo].[ORDERSDETAIL]
and got this instead:
select o.[ORDERID]
from [dbo].[ORDERSDETAIL]
SQL Prompt created a prefix for the select elements but did not specify one for the from elements.
This is in Query Analyzer.