About 5,060,000 results
Open links in new tab
  1. Convert a string to int using sql query - Stack Overflow

    Apr 8, 2009 · How to convert a string to integer using SQL query on SQL Server 2005?

  2. integer - What is the difference between tinyint, smallint, …

    What is the difference between tinyint, smallint, mediumint, bigint and int in MySQL? In what cases should these be used?

  3. SQL Server : Arithmetic overflow error converting expression to …

    One of your expressions needs to be casted/converted to an int in order for this to go through, which is the meaning of Arithmetic overflow error converting expression to data type int.

  4. SQL Server : converting varchar to INT - Stack Overflow

    I am stuck on converting a varchar column UserID to INT. I know, please don't ask why this UserID column was not created as INT initially, long story. So I tried this, but it doesn't work. …

  5. sql - Changing INT to BigInt - Stack Overflow

    Mar 18, 2014 · ALTER TABLE monster ALTER COLUMN MyIntCol1 bigint Management Studio's change SQL is rarely the most efficient and tends to favour temporary tables for anything …

  6. sql server - T-sql - determine if value is integer - Stack Overflow

    Since our SQL Server is the latest and greatest, yours is the simplest and most elegant solution. I easily turned your example into a DECLARE statement that returns its result as an INT, easily …

  7. Difference between "int" and "int (2)" data types - Stack Overflow

    Dec 29, 2022 · For INT and other numeric types that attribute only specifies the display width. See Numeric Type Attributes in the MySQL documentation: MySQL supports an extension for …

  8. sql - Conversion failed when converting the varchar value 'simple, ' …

    Feb 24, 2014 · Now I have to INNER JOIN this table with other tables on a.value = #myTempTable.num. BUT a.value is ntext so I need to CONVERT it what I actually did, but I …

  9. sql - MySQL Valores de un INT - Stack Overflow en español

    Apr 13, 2018 · estoy haciendo unas tareas de MySQL y me ha entrado una duda.. He estado probando y el numero maximo que se puede agregar es 2,147,483,647 en ambos... Entonces …

  10. sql - Conversion failed when converting the nvarchar value ... to …

    Feb 9, 2014 · Conversion failed when converting the nvarchar value 'abcd' to data type int. Solution - I had seen this kind of error before when I forgot to enclose a number (in varchar …