

{"id":21794,"date":"2018-08-07T06:25:32","date_gmt":"2018-08-07T06:25:32","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=21794"},"modified":"2021-03-09T22:15:20","modified_gmt":"2021-03-09T16:45:20","slug":"sql-data-types","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/sql-data-types\/","title":{"rendered":"SQL Data Types | Data Types in SQL Server"},"content":{"rendered":"<p>In this tutorial, we will learn about the data types available in SQL. Let us dive deep into the data types.<\/p>\n<h3>What are the Data types and their Needs?<\/h3>\n<p>We have a huge volume of data available to us, and it would be complicated to handle this data if we store all the data in a single data type.<\/p>\n<p>Data type comes in handy when we need to handle a variety of data available to us.<\/p>\n<p>For example: If we consider the data of a student, we will see that we have a diversity of data types being used.<\/p>\n<p>The name of the candidate is a string or varchar, the roll number is an int value, date of birth is a date object. With this example, we can clearly understand the need for data types in the creation of a database.<\/p>\n<h3>Available Datatypes<\/h3>\n<p>Some of the data types available in SQL are:<\/p>\n<h4>1. Binary Datatype<\/h4>\n<p>Binary datatype has further divisions as follows:<\/p>\n<table style=\"height: 282px;\" width=\"896\">\n<tbody>\n<tr>\n<td><b>Sr.No<\/b><\/td>\n<td><b>DataType<\/b><\/td>\n<td><b>Description<\/b><\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>binary<\/td>\n<td><span style=\"font-weight: 400;\">Stores fixed-length binary data with a maximum capacity of 8000 bytes.<\/span><\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>varbinary<\/td>\n<td><span style=\"font-weight: 400;\">Stores variable-length binary data with a maximum capacity of 8000 bytes.<\/span><\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>varbinary(max)<\/td>\n<td><span style=\"font-weight: 400;\">Stores variable-length binary data with a maximum capacity of 231 bytes.<\/span><\/td>\n<\/tr>\n<tr>\n<td>4<\/td>\n<td>image<\/td>\n<td><span style=\"font-weight: 400;\">Stores variable-length binary data with a maximum capacity of 2,147,483,647 bytes<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4>2. Exact Numeric Datatype<\/h4>\n<p>Further divisions of an exact numeric datatype are as follows:<\/p>\n<table style=\"height: 892px;\" width=\"894\">\n<tbody>\n<tr>\n<td><b>Sr.No<\/b><\/td>\n<td><b>Datatype<\/b><\/td>\n<td><b>Description<\/b><\/td>\n<td><b>Range<\/b><\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>bigint<\/td>\n<td>Holds the big integer values.<\/td>\n<td><span style=\"font-weight: 400;\">[-9,223,372,036,854,775,808 to 9,223,372,036,854,775,808]<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Both inclusive<\/span><\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>int<\/td>\n<td>Holds the integer values.<\/td>\n<td><span style=\"font-weight: 400;\">[-2,147,483,648 to 2,147,483,648] <\/span><span style=\"font-weight: 400;\">Both inclusive<\/span><\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>smallint<\/td>\n<td>Holds small integer values.<\/td>\n<td><span style=\"font-weight: 400;\">[-32,768 to 32,768] <\/span><span style=\"font-weight: 400;\">Both inclusive<\/span><\/td>\n<\/tr>\n<tr>\n<td>4<\/td>\n<td>tinyint<\/td>\n<td>Holds a tiny range of int from 0 to 255.<\/td>\n<td><span style=\"font-weight: 400;\">[0 to 255] <\/span><span style=\"font-weight: 400;\">Both inclusive<\/span><\/td>\n<\/tr>\n<tr>\n<td>5<\/td>\n<td>bit<\/td>\n<td>Holds the value 0 or 1.<\/td>\n<td><span style=\"font-weight: 400;\">0 or 1<\/span><\/td>\n<\/tr>\n<tr>\n<td>6<\/td>\n<td>decimal<\/td>\n<td>Holds the decimal values.<\/td>\n<td><span style=\"font-weight: 400;\">[-10^38+1 to 10^38-1] <\/span><span style=\"font-weight: 400;\">Both inclusive<\/span><\/td>\n<\/tr>\n<tr>\n<td>7<\/td>\n<td>numeric<\/td>\n<td>Holds the numerical values<\/td>\n<td><span style=\"font-weight: 400;\">[-10^38+1 to 10^38-1] <\/span><span style=\"font-weight: 400;\">Both inclusive<\/span><\/td>\n<\/tr>\n<tr>\n<td>8<\/td>\n<td>money<\/td>\n<td>Holds the monetary values.<\/td>\n<td><span style=\"font-weight: 400;\">[-922,337,203,685,477.5808 to 922,337,203,685,477.5808] <\/span><\/p>\n<p><span style=\"font-weight: 400;\">Both inclusive<\/span><\/td>\n<\/tr>\n<tr>\n<td>9<\/td>\n<td>smallmoney<\/td>\n<td>Holds small monetary values.<\/td>\n<td><span style=\"font-weight: 400;\">[-214,748.3648 to 214,748.3648] <\/span><span style=\"font-weight: 400;\">Both inclusive<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4>3. Approximate Numeric Datatype<\/h4>\n<p>The divisions of an approximate numeric datatype are as follows:<\/p>\n<table style=\"height: 161px;\" width=\"895\">\n<tbody>\n<tr>\n<td><b>Sr.No<\/b><\/td>\n<td><b>Datatype<\/b><\/td>\n<td><b>Description<\/b><\/td>\n<td><b>Range<\/b><\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>float<\/td>\n<td>Holds the float values.<\/td>\n<td><span style=\"font-weight: 400;\">-1.79E+308\u00a0 to 1.79E+308<\/span><\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>real<\/td>\n<td>Holds the real numerical values.<\/td>\n<td><span style=\"font-weight: 400;\">-3.40E+38 to 3.40E+38<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4>4. Character String Datatype<\/h4>\n<p>Further classifications of character and string data types are as follows:<\/p>\n<table style=\"height: 284px;\" width=\"889\">\n<tbody>\n<tr>\n<td><b>Sr.No<\/b><\/td>\n<td><b>DataType<\/b><\/td>\n<td><b>Description<\/b><\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>char<\/td>\n<td><span style=\"font-weight: 400;\">Holds fixed length characters with a maximum capacity of 8000 characters.<\/span><\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>varchar<\/td>\n<td><span style=\"font-weight: 400;\">Holds variable-length non-Unicode characters with a max capacity of 8000 characters.<\/span><\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>varchar(max)<\/td>\n<td><span style=\"font-weight: 400;\">Holds Variable-length non-Unicode characters with a max capacity of 231 characters.<\/span><\/td>\n<\/tr>\n<tr>\n<td>4<\/td>\n<td>text<\/td>\n<td><span style=\"font-weight: 400;\">Holds Variable-length non-Unicode data with a max capacity of 2,147,483,647 characters.<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4>5. Unicode character String Datatype<\/h4>\n<p>Further divisions of Unicode character datatype are as follows:<\/p>\n<table style=\"height: 298px;\" width=\"890\">\n<tbody>\n<tr>\n<td><b>Sr.No<\/b><\/td>\n<td><b>DataType<\/b><\/td>\n<td><b>Description<\/b><\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>nchar<\/td>\n<td><span style=\"font-weight: 400;\">Stores Unicode fixed length characters with a max capacity of 4000 characters.<\/span><\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>Nvarchar<\/td>\n<td><span style=\"font-weight: 400;\">Stores Unicode variable-length characters with a max capacity of 4000 characters.<\/span><\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>nvarchar(max)<\/td>\n<td><span style=\"font-weight: 400;\">Stores Unicode variable-length characters with a max capacity of 231 characters.<\/span><\/td>\n<\/tr>\n<tr>\n<td>4<\/td>\n<td>ntext<\/td>\n<td><span style=\"font-weight: 400;\">Stores Unicode variable-length characters with a max capacity of 1 GB characters.<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4>6. Date and time Datatype<\/h4>\n<p>Further classifications of date and time datatype are as follows:<\/p>\n<table style=\"height: 418px;\" width=\"888\">\n<tbody>\n<tr>\n<td><b>Sr.No<\/b><\/td>\n<td><b>Datatype<\/b><\/td>\n<td><b>Description<\/b><\/td>\n<td><b>Range<\/b><\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>datetime<\/td>\n<td>Holds the value of date and time both in a single variable.<\/td>\n<td><span style=\"font-weight: 400;\">Jan 1, 1753 to Dec 31, 9999<\/span><\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>smalldatetime<\/td>\n<td>Holds the smaller range of\u00a0 values of date and time both in a single variable.<\/td>\n<td><span style=\"font-weight: 400;\">Jan 1, 1753 to Jun 6, 2079<\/span><\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>date<\/td>\n<td>Holds the value of the date.<\/td>\n<td><span style=\"font-weight: 400;\">No Limits<\/span><\/td>\n<\/tr>\n<tr>\n<td>4<\/td>\n<td>time<\/td>\n<td>Holds the value of time.<\/td>\n<td><span style=\"font-weight: 400;\">No Limits<\/span><\/td>\n<\/tr>\n<tr>\n<td>5<\/td>\n<td>year<\/td>\n<td>Holds the two-digit or four-digit value for the variables of type year.<\/td>\n<td><span style=\"font-weight: 400;\">No Limits<\/span><\/td>\n<\/tr>\n<tr>\n<td>6<\/td>\n<td>timestamp<\/td>\n<td>Holds the value of time in the variable.<\/td>\n<td><span style=\"font-weight: 400;\">No Limit<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4>7. Miscellaneous Data Types<\/h4>\n<p>Further classifications of miscellaneous data types are as follows:<\/p>\n<table style=\"height: 459px;\" width=\"885\">\n<tbody>\n<tr>\n<td><b>Sr.No<\/b><\/td>\n<td><b>Datatype<\/b><\/td>\n<td><b>Description<\/b><\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>clob<\/td>\n<td><span style=\"font-weight: 400;\">Holds large character objects with a max capacity of 2Gb.<\/span><\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>blob<\/td>\n<td><span style=\"font-weight: 400;\">Holds large binary objects.<\/span><\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>XML<\/td>\n<td><span style=\"font-weight: 400;\">Holds the incoming XML data.<\/span><\/td>\n<\/tr>\n<tr>\n<td>4<\/td>\n<td>JSON<\/td>\n<td><span style=\"font-weight: 400;\">Holds the incoming JSON data.<\/span><\/td>\n<\/tr>\n<tr>\n<td>5<\/td>\n<td>cursor<\/td>\n<td><span style=\"font-weight: 400;\">Holds the cursor object.<\/span><\/td>\n<\/tr>\n<tr>\n<td>6<\/td>\n<td>UUID<\/td>\n<td><span style=\"font-weight: 400;\">Holds the universally unique identifiers.<\/span><\/td>\n<\/tr>\n<tr>\n<td>7<\/td>\n<td>bfile<\/td>\n<td><span style=\"font-weight: 400;\">Holds the binary data stored in external files.<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Summary<\/h2>\n<p>In this tutorial, we saw the need and use of data types in SQL. Some of the widely used data types in SQL are int, varchar, date object, boolean, etc.<\/p>\n<p>When we talk about data types, we need to know about the data that is to be put into the column. Once we study and understand the data to be put in the column, we can decide the data type of the column.<\/p>\n<p>When we assign the column with the data type, the insertion queries work only if the data of the required data type is being inserted else the command fails and exits. We will continue learning more in the next tutorials.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will learn about the data types available in SQL. Let us dive deep into the data types. What are the Data types and their Needs? We have a huge volume&#46;&#46;&#46;<\/p>\n","protected":false},"author":6,"featured_media":86778,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[66],"tags":[2472,3495,3496,4234,5039,9161,13439,13463,13555],"class_list":["post-21794","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sql","tag-character-string-datatype","tag-data-types-in-sql","tag-data-types-in-structured-query-language","tag-exact-numeric-type","tag-general-data-types-in-sql","tag-numeric-data-type-sql","tag-sql-data-types-with-example","tag-sql-general-data-types","tag-sql-server-numeric-data-types"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SQL Data Types | Data Types in SQL Server - DataFlair<\/title>\n<meta name=\"description\" content=\"SQL data types,numeric data type SQL,SQL server Data Types,what is data type in SQL,SQL data type with example,number datatype in SQL,\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/sql-data-types\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Data Types | Data Types in SQL Server - DataFlair\" \/>\n<meta property=\"og:description\" content=\"SQL data types,numeric data type SQL,SQL server Data Types,what is data type in SQL,SQL data type with example,number datatype in SQL,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/sql-data-types\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-07T06:25:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-09T16:45:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/08\/Data-Types-Available-in-SQL.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL Data Types | Data Types in SQL Server - DataFlair","description":"SQL data types,numeric data type SQL,SQL server Data Types,what is data type in SQL,SQL data type with example,number datatype in SQL,","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/data-flair.training\/blogs\/sql-data-types\/","og_locale":"en_US","og_type":"article","og_title":"SQL Data Types | Data Types in SQL Server - DataFlair","og_description":"SQL data types,numeric data type SQL,SQL server Data Types,what is data type in SQL,SQL data type with example,number datatype in SQL,","og_url":"https:\/\/data-flair.training\/blogs\/sql-data-types\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2018-08-07T06:25:32+00:00","article_modified_time":"2021-03-09T16:45:20+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/08\/Data-Types-Available-in-SQL.jpg","type":"image\/jpeg"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/sql-data-types\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/sql-data-types\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/2c58ecb4f73a39f0ef993f1ddfcd7b89"},"headline":"SQL Data Types | Data Types in SQL Server","datePublished":"2018-08-07T06:25:32+00:00","dateModified":"2021-03-09T16:45:20+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/sql-data-types\/"},"wordCount":760,"commentCount":1,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/sql-data-types\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/08\/Data-Types-Available-in-SQL.jpg","keywords":["character string datatype","Data Types in sql","Data types in Structured Query Language","Exact numeric type","general data types in SQL","numeric data type SQL","SQL Data types with example","SQL general data Types","SQL server numeric data types"],"articleSection":["SQL Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/sql-data-types\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/sql-data-types\/","url":"https:\/\/data-flair.training\/blogs\/sql-data-types\/","name":"SQL Data Types | Data Types in SQL Server - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/sql-data-types\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/sql-data-types\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/08\/Data-Types-Available-in-SQL.jpg","datePublished":"2018-08-07T06:25:32+00:00","dateModified":"2021-03-09T16:45:20+00:00","description":"SQL data types,numeric data type SQL,SQL server Data Types,what is data type in SQL,SQL data type with example,number datatype in SQL,","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/sql-data-types\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/sql-data-types\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/sql-data-types\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/08\/Data-Types-Available-in-SQL.jpg","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/08\/Data-Types-Available-in-SQL.jpg","width":1200,"height":628,"caption":"Data Types Available in SQL"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/sql-data-types\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"SQL Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/sql\/"},{"@type":"ListItem","position":3,"name":"SQL Data Types | Data Types in SQL Server"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/2c58ecb4f73a39f0ef993f1ddfcd7b89","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"The DataFlair Team provides industry-driven content on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our expert educators focus on delivering value-packed, easy-to-follow resources for tech enthusiasts and professionals.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam2\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/21794","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=21794"}],"version-history":[{"count":6,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/21794\/revisions"}],"predecessor-version":[{"id":86779,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/21794\/revisions\/86779"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/86778"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=21794"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=21794"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=21794"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}