Filter Type: All Time (3 Results) Past 24 Hours Past Week Past month Post Your Comments?
Show activity on this post. That is because you are using datatype int for phone number which have maximum value of 2^32 - 1 ( 2147483647) or 4294967295 if unsigned . You should use datatype varchar for phone number. Show activity on this post. As phone is defined as phone INT (10), Integer can't be put in codes.
Preview / Show more
Updated: 6 hours ago
See Also:Jack Stack Phone Number, Brian Stack Phone Number, Verify It Show details
You can cast the phone number as a string then then parse out the parts and add hyphen. declare @phone int set @phone = '1232223333' select SUBSTRING (cast (@phone as varchar (10)),1,3)+'-'+SUBSTRING (cast (@phone as varchar (10)),4,3)+'-'+SUBSTRING (cast (@phone as varchar (10)),7,4) Share. Improve this answer.
Preview / Show more
Updated: 7 hours ago
See Also:Sql Phone Number Format, Sql Query Phone Number Format, Verify It Show details
If the input phone number isn’t actually a numeric type, then you’ll probably get an error, something like this: SELECT FORMAT('0234567890', '000-000-0000'); Result: Msg 8116, Level 16, State 1, Line 1 Argument data type varchar is invalid for argument 1 of format function. In such cases, it’s easy enough to convert the value to a numeric ...
Preview / Show more
Updated: just now
See Also:Sql Phone Number Format, Sql Query Phone Number Format, Verify It Show details
All Time (3 Results)
Past 24 Hours
Past Week
Past month
However If you do not want to do some calculations with it, then use the data type as varchar (in Laravel migration: it is string) as the data type of the field. So, when it comes to storing Phone numbers, you definitely use the varchar data type as you do not have to do calculations with Phone numbers.
Phone numbers are made of numbers. Using varchar allows user to store any type of formatting, with ( or not, with - or . and it quickly creates a mess with your data. A phone # format is country dependent, the mask should be tied to the country.