About 53 results
Open links in new tab
  1. Qual a diferença entre SMALLINT (3) e INT (3)? - Stack Overflow em ...

    Jun 28, 2018 · A construção padrão desses tipos é SMALLINT(M) e INT(M) onde M = numero máximo de dígitos que o campo irá receber. Preciso armazenar a resolução de uma imagem que pode ser …

  2. 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 optionally …

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

    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 - 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 applicable to …

  5. sql - Conversão de VARCHAR para INT - Stack Overflow em Português

    Jul 12, 2017 · 6 O erro está acontecendo porque você está convertendo um valor que não se encaixa no tipo INT, aí acaba dando overflow na conversão. No SQL Server, existem 4 tipos de variáveis …

  6. SQL how to specify the int(size) when creating a table column?

    Dec 13, 2022 · Removing the size attribute from the integer works, but I want to define the column width. I tried to create a table in a MS SQL Database and the query throws errors as explained in the details.

  7. sql - The conversion of the varchar value overflowed an int column ...

    Dec 16, 2013 · The conversion of the varchar value '8041159620' overflowed an int column.: select cast('8041159620' as int) AS Integer is defined as : Integer (whole number) data from -2^31 ( …

  8. 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. and giv...

  9. Understanding SQL Server Int Data Types - Stack Overflow

    Aug 24, 2020 · I have a table with a column called PtObjId of the INT data type. From my understanding by looking at the thread located Microsoft Documentation here. I can only store up to values that are …

  10. integer - What is the difference between tinyint, smallint, mediumint ...

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