What does the following statement mean? Is it an equivalent for TOP
?
select +10 as ContentID
What does the following statement mean? Is it an equivalent for TOP
?
select +10 as ContentID
No, it simply returns a result set with one row and one column (named ContentID), and that column contains the integer number 10.
No, it will simply return a record set with one record and one field. The field will be named ContentId and it will contain "10" (probably as an int)