EDUCBA

EDUCBA

MENUMENU
  • Free Tutorials
  • Free Courses
  • Certification Courses
  • 360+ Courses All in One Bundle
  • Login

SQL Server Data Types

By Priya PedamkarPriya Pedamkar

Home » Data Science » Data Science Tutorials » SQL Tutorial » SQL Server Data Types

SQL Server Data Types

Introduction to SQL Server Data Types

Before understanding about SQL Server data types we should understand what is Sql server and why we are going to use sql server. The Word SQL stands for Structured Query Language. As we all know SQL Server is the relational database management system and it is developed by Microsoft. It is mainly used for storing and retrieving the data or we can say maintaining the data. We can do all types of operations to maintain the database. we can say that the SQL server is the database server that helps in implementing the structured query language. In simple words, we can say that data types tell the compiler what type of data is used in the programming.

SQL Server Data Types

In SQL Server there are different types of data types.

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

different types of data types

1. String Data Types

  • CHAR(size): It is having a fixed-length character string with a maximum of 8000 characters.
  • TEXT: Text is a variable width character string with a maximum of 2 GB text data.
  • NCHAR(size): It is fixed-length Unicode data with a maximum of 4000 characters
  • VARCHAR(size): It is having a maximum of 8000 or more characters and it is a variable width character string
  • NVARCHAR(max): It is having a maximum of 4000 or more characters and it is a variable-width Unicode string.
  • BINARY(size): It has 8000 characters and it is fixed with a binary string
  • VARBINARY(size) or VARBINARY(max): It is variable width binary string and with a maximum size of 2GB.

2. Numeric Data Types

  • BIT: Integer that can be 0, 1, or NULL.
  • Int: It allows whole numbers in the range of -2,147,483,648 and 2,147,483,647.
  • Smallint: It allows whole numbers in the range of -32,768 and 32,767.
  • Bigint: It allows whole numbers with a range -9,223,372,036,854,775,808 and 9,223,372,036,854,775,807
  • Tinyint: It allows whole numbers from 0 to 255.
  • Decimal(p,s): Fixed precision and scale numbers. If it is not specifying anything, P defaults to 18 and S defaults to 0.
  • smallmoney: Monetary data from -214,748.3648 to 214,748.3647 
  • float(n): Floating point number, if n not specified it will default to 53.
  • REAL: Floating precision number and it is a lost equal to float.

3. Date and Time Data Types

  • DATE: Date Values range from ‘0001-01-01’ to ‘9999-12-31’.The date will be displayed as ‘YYYY-MM-DD’.
  • TIME: It Stores a time only to an accuracy of 100 nanoseconds. Time values range from ’00:00:00.0000000′ to ’23:59:59.9999999′
  • Datetime: The date values ranges from ‘1753-01-01 00:00:00’ to ‘9999-12-31 23:59:59′ and Time values ranges from ’00:00:00′ to ’23:59:59:997’ with an accuracy of 3.33 milliseconds.
  • Datetime2: Now below you can see the difference between Datetime and Datetime2. It ranges from January 1, 0001 to December 31, 9999 with an accuracy of 100 nanoseconds.
  • Datetimeoffset: It is same as datetime2 and in addition to this it includes time zone offset.

Other Data Types

  • xml: It stores xml formatted data with a maximum size of 2GB.
  • cursor: It is used in database operations and it stores a reference to a cursor.
  • sql_variant: It stores various data types of data with a maximum size of 8000 bytes.

Examples of SQL Server Data Types

Given below are the examples of SQL Server Data Types:

Example #1

CREATE TABLE Employees
(
column1 datatype [ NULL | NOT NULL ],
column2 datatype [ NULL | NOT NULL ],
column3 datatype [ NULL | NOT NULL ],
column4 datatype [ NULL | NOT NULL ],
...
);

Explanation:

All the columns in a table must have a data type. It should be defined an either null or not null and if we are placing value in left blank the database automatically assumes default as Null.

Example #2

CREATE TABLE Table_Name
( Custimer_id INT NOT NULL,
first_name VARCHAR(50) NOT NULL,
last_name VARCHAR(50)
CTC MONEY
);

Explanation:

  • In an example, the first column is called Customer id which is created as an INT data type and it will not be having NULL values.
  • The second column is the first_name and it is VARCHAR datatype and it should not contain NULL values.
  • The third column is the last_name which is a VARCHAR data type with a maximum character length of 50 but it can contain Null values.
  • The fourth column is called salary which is a MONEY data type and it can contain NULL values.

Example #3

Select
ISDATE('2019-09-25') As P,
ISDATE('2019-09-25 14:49') As Q,
ISDATE('2019-09-25 14:49:54') As R,
ISDATE('13:45) As S,
ISDATE('2019-09-31) As T,
ISDATE('13:67) As U,
ISDATE('27:45) As V

Explanation:

  • 2019-09-25 is a valid date.
  • 2019-09-25 14:49 is a valid date with data of hour and minute and the same applies to 2019-09-25 14:49:54 and it also includes seconds.
  • If we execute the above program last 3 will be shown as zero (T, U through V are 0 )because September does not have 31 days, thus making 2019-09-31 an invalid date.
  • Days have 24 hours and each hour has 60 minutes, which makes 27:45 and 13:67 as invalid times.

Conclusion

Before going to maintain the database using SQL Server we need to learn the basics of SQL Server, without knowing the basic concepts like Data types, Functions, etc we cannot use the SQL for example if we want to use ant data type first we need to know the maximum size, type, and range of values. We cannot write the SQL script without having the knowledge of Datatypes. All types of data types will not support all types of databases.

Below are a few examples:

  • Oracle database will not support DATETIME
  • Mysql will not support the CLOB data type.
  • Microsoft SQL Server has big and small money data types but they will not help other database vendors.

Recommended Articles

This is a guide to SQL Server Data Types. Here we discuss the introduction, examples and different types of SQL Server data types. You may also have a look at the following articles to learn more –

  1. Relational Database Model
  2. Data Definition Language
  3. Custom SQL in Tableau
  4. Data Modelling Tools
  5. Guide to Examples of SQL Delete Join
  6. Examples of SQL Server Substring

SQL Training Program (7 Courses, 8+ Projects)

7 Online Courses

8 Hands-on Projects

73+ Hours

Verifiable Certificate of Completion

Lifetime Access

Learn More

0 Shares
Share
Tweet
Share
Primary Sidebar
SQL Tutorial
  • Basic
    • What is SQL
    • Careers in SQL
    • Careers in SQL Server
    • IS SQL Microsoft?
    • SQL Management Tools
    • What is SQL Developer
    • Uses of SQL
    • How to Install SQL Server
    • What is SQL Server
    • Database in SQL
    • SQL Data Types
    • SQL Keywords
    • Composite Key in SQL
    • SQL Constraints
    • Transactions in SQL
    • First Normal Form
    • SQL Server Data Types
    • SQL Administration
    • SQL Variables
    • SQL Enum
    • Cheat sheet SQL
  • Operators
    • SQL Operators
    • SQL Arithmetic Operators
    • SQL Logical Operators
    • SQL String Operators
    • Ternary Operator in SQL
  • Commands
    • SQL Commands
    • SQL Alter Command
    • SQL Commands Update
    • SQL DML Commands
    • SQL DDL Commands
    • FETCH in SQL
  • Clause
    • SQL Clauses
    • SQL IN Operator
    • SQL LIKE Clause
    • SQL NOT Operator
    • SQL Minus
    • SQL WHERE Clause
    • SQL with Clause
    • SQL HAVING Clause
    • GROUP BY clause in SQL
    • SQL GROUP BY DAY
    • ORDER BY Clause in SQL
    • SQL ORDER BY CASE
    • SQL ORDER BY DATE
    • SQL ORDER BY Alphabetical
    • SQL ORDER BY Ascending
    • SQL Order by Count
    • SQL GROUP BY Month
    • SQL GROUP BY Multiple Columns
    • SQL GROUPING SETS
  • Queries
    • SQL Insert Query
    • SQL SELECT Query
    • SQL SELECT RANDOM
    • SQL Except Select
    • SQL Subquery
    • SQL SELECT DISTINCT
    • SQL WITH AS Statement
  • Keys
    • SQL Keys
    • Primary Key in SQL
    • Foreign Key in SQL
    • Unique Key in SQL
    • Alternate Key in SQL
    • SQL Super Key
  • Functions
    • SQL Date Function
    • SQL String Functions
    • SQL Compare String
    • SQL Window Functions
    • SQL Timestamp
    • SQL TO_DATE()
    • SQL DATEADD()
    • SQL DATEDIFF()
    • ANY in SQL
    • LIKE Query in SQL
    • BETWEEN in SQL
    • LTRIM() in SQL
    • TOP in SQL
    • SQL Select Top
    • Merge SQL
    • SQL TRUNCATE()
    • SQL UNION
    • SQL ALL
    • SQL INTERSECT
    • SQL Alias
    • SQL Server Substring
    • CUBE in SQL
    • SQL RANK()
    • SQL MOD()
    • SQL CTE
    • SQL LAG()
    • SQL MID
    • SQL avg()
    • SQL WEEK
    • SQL DELETE
    • SQL DATEPART()
    • SQL DECODE()
    • SQL DENSE_RANK()
    • SQL NTILE()
    • SQL NULLIF()
    • SQL Stuff
    • SQL Ceiling
    • SQL EXISTS
    • SQL LEAD()
    • SQL COALESCE
    • SQL BLOB
    • SQL ROW_NUMBER
    • SQL Server Replace
    • SQL Server Permission
    • T-SQL INSERT
    • SQL Ranking Function
  • Joins
    • Join Query in SQL
    • Types of Joins in SQL
    • Types of Joins in SQL Server
    • SQL Inner Join
    • SQL Join Two Tables
    • SQL Delete Join
    • SQL Left Join
    • SQL Right Join
    • SQL Cross Join
    • SQL Outer Join
    • SQL Full Join
    • SQL Self Join
    • Natural Join SQL
    • SQL Multiple Join
  • Advanced
    • SQL Formatter
    • SQL Injection Attack
    • Aggregate Functions in SQL
    • IF ELSE Statement in SQL
    • SQL CASE Statement
    • SQL While Loop
    • SQL INSTR()
    • What is Procedure in SQL
    • Stored Procedure in SQL?
    • SQL Server Constraints
    • SQL DELETE ROW
    • Column in SQL
    • Table in SQL
    • SQL Virtual Table
    • SQL Merge Two Tables
    • SQL Table Partitioning
    • SQL Temporary Table
    • SQL Clone Table
    • SQL Rename Table
    • SQL LOCK TABLE
    • SQL Clear Table
    • SQL DESCRIBE TABLE
    • SQL Mapping
    • Cursors in SQL
    • AND in SQL
    • Wildcard in SQL
    • SQL FETCH NEXT
    • SQL Views
    • SQL Delete View
    • Triggers in SQL
    • SQL UPDATE Trigger
    • SQL AFTER UPDATE Trigger
    • SQL Update Statement
    • SQL DROP TRIGGER
    • Types of SQL Views
    • SQL Port
    • SQL Clustered Index
    • SQL COMMIT
    • Distinct Keyword in SQL
    • PARTITION BY in SQL
    • SQL Set Operators
    • SQL UNION ALL
    • Metadata in SQL
    • SQL Bulk Insert
    • Array in SQL
    • SQL REGEXP
    • JSON in SQL
    • SQL For loop
    • EXPLAIN in SQL
    • SQL Cluster
    • SQL Backup
    • SQL Pattern Matching
    • SQL Users
    • ISNULL SQL Server
    • SQL pivot
    • SQL Import CSV
  • Interview Questions
    • SQL Interview Questions
    • Advance SQL Interview Questions
    • SQL Joins Interview Questions
    • SQL Server Interview Questions

Related Courses

JDBC Training Course

PHP course

Windows 10 Training

SQL Course Training

PL/SQL Certification Courses

Oracle Certification Courses

Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Corporate Training
  • Certificate from Top Institutions
  • Contact Us
  • Verifiable Certificate
  • Reviews
  • Terms and Conditions
  • Privacy Policy
  •  
Apps
  • iPhone & iPad
  • Android
Resources
  • Free Courses
  • Database Management
  • Machine Learning
  • All Tutorials
Certification Courses
  • All Courses
  • Data Science Course - All in One Bundle
  • Machine Learning Course
  • Hadoop Certification Training
  • Cloud Computing Training Course
  • R Programming Course
  • AWS Training Course
  • SAS Training Course

© 2020 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA Login

Forgot Password?

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you
Book Your One Instructor : One Learner Free Class

Let’s Get Started

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you

Special Offer - SQL Training Program (7 Courses, 8+ Projects) Learn More