in reply to Re^2: Pulling a blank SQL row, but there are no blank rows.
in thread Pulling a blank SQL row, but there are no blank rows.

Just for curiosity:

Is there any difference (in SQL server) between

select top 1 Quote, CharacterName, GameTitle from dbo.GameQuotes order + by newid()
and
select top 1 Quote, CharacterName, GameTitle from dbo.GameQuotes order + by newid
i.e. without the parentheses at the end of newid?