Declare @phoneNumber int
select @phoneNumber=Isnull('08041159620',0);
त्रुटि दें:
The conversion of the varchar value '8041159620' overflowed an int column.: select cast('8041159620' as int)
एएस
पूर्णांक को इस प्रकार परिभाषित किया गया है:
पूर्णांक (पूर्ण संख्या) डेटा -2^31 (-2,147,483,648) से 2^31 - 1 (2,147,483,647) तक। भंडारण का आकार 4 बाइट्स है। int के लिए SQL-92 पर्यायवाची पूर्णांक है।
समाधान
Declare @phoneNumber bigint