About 55,600 results
Open links in new tab
  1. Difference between numeric, float and decimal in SQL Server

    Jun 29, 2009 · For the Decimal or Numeric data types, SQL Server considers each specific combination of precision and scale as a different data type. DECIMAL (2,2) and DECIMAL …

  2. What datatype to use when storing latitude and longitude data in …

    When storing latitude or longitude data in an ANSI SQL compliant database, what datatype would be most appropriate? Should float be used, or decimal, or ...? I'm aware that Oracle, MySql, …

  3. Should you choose the MONEY or DECIMAL(x,y) datatypes in SQL …

    As someone currently converting a SQL Server database to Amazon Redshift, I can vouch that this is a genuine issue. Try to avoid data types that are bespoke to a particular database …

  4. sql server - Finding the data types of a SQL temporary table

    2 Yes, the data types of the temp table will be the data types of the columns you are selecting and inserting into it. So just look at the select statement and determine each data type based on …

  5. Is there a Boolean data type in Microsoft SQL Server like there is in ...

    Jun 29, 2010 · 109 You may want to use the BIT data type, probably setting is as NOT NULL: Quoting the MSDN article: bit (Transact-SQL) An integer data type that can take a value of 1, …

  6. schema - SQL statement to get column type - Stack Overflow

    Nov 16, 2012 · 659 In ISO SQL (i.e. most RDBMS today) you can use the INFORMATION_SCHEMA.COLUMNS view, which SQL Server supports. This view's …

  7. How to get the datatype of a column of a view in SQL Server

    Dec 16, 2017 · But this did not help finding the data types of the information_schema.columns view columns themselves, therefore I asked . sp-describe-first-result-set-transact. there is a …

  8. .net - C# Equivalent of SQL Server DataTypes - Stack Overflow

    SQL Server and the .NET Framework are based on different type systems. For example, the .NET Framework Decimal structure has a maximum scale of 28, whereas the SQL Server decimal …

  9. How do I return the SQL data types from my query?

    Dec 17, 2014 · I need to create the staging table, but with hundreds of views/tables to dig through to find the data types that are being represented here, I have to wonder if there's a better way …

  10. How to get column details (column, datatype) of table in SQL …

    Jul 18, 2020 · I am new to databases, I just created a table using "New Table", but I want to list of columns and their properties as shown in the screenshot. What is the SQL …