Reputation: 1
What does the symbol ^
mean in SQL?
How do you read the following:
smallint = Integer data from –2 ^ 15 (–32,768) to 2 ^ 15–1 (32,767)
from the Transact-SQL documentation?
Upvotes: 0
Views: 54
Reputation: 34378
^
means exponentiation there. It is a very common meaning, and not at all specific to SQL.
Upvotes: 1