About 1,840,000 results
Open links in new tab
  1. Difference between "int" and "int (2)" data types - Stack Overflow

    Dec 29, 2022 · See Numeric Type Attributes in the MySQL documentation: MySQL supports an extension for optionally specifying the display width of integer data types in parentheses …

  2. What is the limit of the field type BIGINT in SQL?

    Jul 16, 2012 · Actually, if bigint is defined in the ISO SQL standard as 64 bits (which I suspect it is), then you wouldn't need to make an exhaustive list of databases, only the ones too brain …

  3. Difference between numeric, float and decimal in SQL Server

    Jun 29, 2009 · The parameter supplied to the float data type defines the number of bits that are used to store the mantissa of the floating point number. Approximate Numeric Data Type …

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

    The following example creates a table using the bigint, int, smallint, and tinyint data types. Values are inserted into each column and returned in the SELECT statement.

  5. SQL variable to hold list of integers - Stack Overflow

    269 I'm trying to debug someone else's SQL reports and have placed the underlying reports query into a query windows of SQL 2012. One of the parameters the report asks for is a list of …

  6. How to change data type of a column in an SQL table from integer …

    I have assigned the data type of one of the columns of a table I have created as int. My problem is that it is not showing decimal places when I run a query against it. How do I correct the data ...

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

  8. SQL alter column datatype from nvarchar to int - Stack Overflow

    Aug 28, 2013 · Can the datatype of a field be changed to int from nvarchar?? alter table employee alter column designation int is this valid?? If not can it be done in some other way?? P.S: I am …

  9. What is the equivalent for datatype LONG in SQL Server?

    Feb 24, 2021 · Quite much a int in sql server is a long in VBA. So in VBA code, you no doubt near EVERY where used a long for a PK id in a row. You can leave that code "as is" and just …

  10. oracle11g - Difference between number and integer datatype in …

    Nov 21, 2012 · I used oracle dictionary views to find out column differences if any between two schema's. While syncing data type discrepancies I found that both NUMBER and INTEGER …