

{"id":16780,"date":"2018-05-27T07:10:57","date_gmt":"2018-05-27T07:10:57","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=16780"},"modified":"2021-04-05T13:45:31","modified_gmt":"2021-04-05T08:15:31","slug":"cql-clauses","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/cql-clauses\/","title":{"rendered":"CQL Clauses &#8211; Select, Where, OrderBy Clauses in Cassandra"},"content":{"rendered":"<h2 class=\"western\">1. Objective<\/h2>\n<p><span style=\"font-size: large\">In this <strong><a href=\"https:\/\/data-flair.training\/blogs\/apache-cassandra-tutorial\/\">Cassandra Tutorial<\/a><\/strong>, we will discuss the CQL clauses that are used along with different commands. CQL clauses are used to specify data that has to be used in a program or application. <\/span><\/p>\n<p><span style=\"font-size: large\">A user can select a column data and perform any operation using other CQL commands. <\/span><br \/>\n<span style=\"font-size: large\">So, let&#8217;s begin CQL Clauses.<\/span><\/p>\n<div id=\"attachment_16790\" style=\"width: 1210px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01.jpg\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-16790\" class=\"wp-image-16790 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01.jpg\" alt=\"CQL Clauses - Select, Where, OrderBy Clauses\" width=\"1200\" height=\"628\" srcset=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01.jpg 1200w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01-150x79.jpg 150w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01-300x157.jpg 300w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01-768x402.jpg 768w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01-1024x536.jpg 1024w\" sizes=\"auto, (max-width: 1200px) 100vw, 1200px\" \/><\/a><p id=\"caption-attachment-16790\" class=\"wp-caption-text\">CQL Clauses &#8211; Select, Where, OrderBy Clauses<\/p><\/div>\n<p><strong><a href=\"https:\/\/data-flair.training\/blogs\/cassandra-features\/\">Do you know top Cassandra Features<\/a><\/strong><\/p>\n<h2>2. CQL Clauses<\/h2>\n<p>Cassandra Query Langauge (CQL), has three major types of clauses, let&#8217;s discuss them one by one:<\/p>\n<h3 class=\"western\"><span style=\"font-size: large\">a. SELECT Clause<\/span><\/h3>\n<p><span style=\"font-size: large\">There are some programs that have to use a specific data from a table. In such programs, the user has to derive a particular set of data. The user can use a SELECT keyword to use a particular field in a table.<\/span><br \/>\n<strong><a href=\"https:\/\/data-flair.training\/blogs\/cassandra-data-model\/\">Let&#8217;s See How Cassandra Stores Data or\u00a0Cassandra Data Model<\/a><\/strong><br \/>\n<span style=\"font-size: large\"><strong>A syntax of SELECT Clause:<\/strong> <\/span><\/p>\n<pre class=\"EnlighterJSRAW\">SELECT &lt;identifier&gt; FROM &lt;table name&gt;;<\/pre>\n<p><span style=\"font-size: large\">In the syntax, the identifier is basically a field that has to be selected from a particular table. If the identifier is &#8216;*&#8217;, it means the user will select the whole table.<\/span><\/p>\n<p><span style=\"font-size: large\"><strong>Example:<\/strong> In this example, we will first select a particular field from the table below. And in next set, we will select the whole table.<\/span><br \/>\n<strong>Table.1 CQL Clauses &#8211; SELECT Clause<\/strong><\/p>\n<table width=\"616\" cellspacing=\"0\" cellpadding=\"7\">\n<colgroup>\n<col width=\"139\" \/>\n<col width=\"140\" \/>\n<col width=\"140\" \/>\n<col width=\"139\" \/> <\/colgroup>\n<tbody>\n<tr valign=\"top\">\n<td width=\"139\"><span style=\"font-size: large\"><b>Id<\/b><\/span><\/td>\n<td width=\"140\"><span style=\"font-size: large\"><b>Name<\/b><\/span><\/td>\n<td width=\"140\"><span style=\"font-size: large\"><b>Branch<\/b><\/span><\/td>\n<td width=\"139\"><span style=\"font-size: large\"><b>Phone number<\/b><\/span><\/td>\n<\/tr>\n<tr valign=\"top\">\n<td width=\"139\"><span style=\"font-size: large\">001<\/span><\/td>\n<td width=\"140\"><span style=\"font-size: large\">Ayush<\/span><\/td>\n<td width=\"140\"><span style=\"font-size: large\">Electrical Engineering<\/span><\/td>\n<td width=\"139\"><span style=\"font-size: large\">9877656543<\/span><\/td>\n<\/tr>\n<tr valign=\"top\">\n<td width=\"139\"><span style=\"font-size: large\">002<\/span><\/td>\n<td width=\"140\"><span style=\"font-size: large\">Aaron<\/span><\/td>\n<td width=\"140\"><span style=\"font-size: large\">Computer Engineering<\/span><\/td>\n<td width=\"139\"><span style=\"font-size: large\">9867767689<\/span><\/td>\n<\/tr>\n<tr valign=\"top\">\n<td width=\"139\"><span style=\"font-size: large\">003<\/span><\/td>\n<td width=\"140\"><span style=\"font-size: large\">Kabir<\/span><\/td>\n<td width=\"140\"><span style=\"font-size: large\">Applied Physics<\/span><\/td>\n<td width=\"139\"><span style=\"font-size: large\">8769878762<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><span style=\"font-size: large\">First, we will select the field &#8216;Branch&#8217;.<\/span><\/p>\n<pre class=\"EnlighterJSRAW\">cqlsh; keyspace1&gt; SELECT Branch FROM student;<\/pre>\n<p><span style=\"font-size: large\">Now, to select the full table, the code is,<\/span><\/p>\n<pre class=\"EnlighterJSRAW\">cqlsh;keyspace1&gt; SELECT Branch FROM student;<\/pre>\n<p><strong><a href=\"https:\/\/data-flair.training\/blogs\/cassandra-architecture\/\">Let&#8217;s Learn Architecture of\u00a0Cassandra in Detail<\/a><\/strong><\/p>\n<h3><span style=\"font-size: large\">b. WHERE\u00a0<\/span><span style=\"font-size: large\">Clause<\/span><\/h3>\n<p><span style=\"font-size: large\">WHERE clause is a bit more specific than SELECT. In SELECT the user selects a field, whereas in WHERE clause the user can select a particular data. <\/span><\/p>\n<p><span style=\"font-size: large\">In other words, the data is specific to a particular cell of a table. This clause is used along with SELECT cause, in which WHERE acts as a condition.<\/span><br \/>\n<span style=\"font-size: large\"><strong>A Syntax of WHERE Clause:<\/strong><\/span><\/p>\n<pre class=\"EnlighterJSRAW\">SELECT&lt;field name&gt;FROM&lt;table name&gt;WHERE&lt;identifier&gt;;<\/pre>\n<p><span style=\"font-size: large\"><strong>Example:<\/strong> In this example, we will select a particular cell &#8216;Computer Engineering&#8217; from the previous table. And in the next set, we will select a whole row of a table by using &#8216;*&#8217;.<\/span><\/p>\n<pre class=\"EnlighterJSRAW\">cqlsh;keyspace1&gt; SELECT Branch FROM student WHERE Id=002;<\/pre>\n<p><span style=\"font-size: large\">Now to select the whole row;<\/span><\/p>\n<pre class=\"EnlighterJSRAW\">cqlsh;keyspace1&gt;SELECT * FROM student WHERE Id=002;<\/pre>\n<p><strong><a href=\"https:\/\/data-flair.training\/blogs\/cassandra-curd-operation\/\">Do you know Cassandra Curd Operation \u2013 Create, Update, Read &amp; Delete<\/a><\/strong><\/p>\n<h3><span style=\"font-size: large\">c. ORDERBY Clause<\/span><\/h3>\n<p><span style=\"font-size: large\">There are applications that require a particular set of data in a particular set of order. To perform this operation the user can use ORDERBY clause along with SELECT clause.<\/span><br \/>\n<span style=\"font-size: large\"><strong>A Syntax of ORDERBY Clause:<\/strong><\/span><\/p>\n<pre class=\"EnlighterJSRAW\">SELECT&lt;field name&gt;FROM&lt;table name&gt;ORDERBY&lt;identifier&gt;;<\/pre>\n<p><span style=\"font-size: large\"><strong>Example:<\/strong> In this example, we will arrange the table according to a phone number.<\/span><\/p>\n<pre class=\"EnlighterJSRAW\">cqlsh;keyspace1&gt; SELECT*FROM student ORDERBY Phone number;<\/pre>\n<p><strong><a href=\"https:\/\/data-flair.training\/blogs\/data-definition-command-cql\/\">Have a look at Cassandra Data Definition Command<\/a><\/strong><\/p>\n<p>So, this was all about CQL Clauses Tutorial. Hope you like our explanation.<\/p>\n<h2>3. Conclusion<\/h2>\n<p><span style=\"font-size: large\">Hence, in this Cassandra Query Language\u00a0Clauses Tutorial, we discussed CQL CLAUSES: SELECT Clause, WHERE Clause &amp; ORDERBY\u00a0Clause with examples and syntax. <\/span><\/p>\n<p><span style=\"font-size: large\">Furthermore, if have any doubt regarding CQL commands, feel free to ask in the comment section. <\/span><br \/>\n<span style=\"font-size: large\">Related Topic &#8211; <strong><a href=\"https:\/\/data-flair.training\/blogs\/cassandra-interview-questions\/\">Cassandra Interview Questions<\/a><\/strong><\/span><br \/>\n<span style=\"font-size: large\"><strong><a href=\"https:\/\/docs.databricks.com\/spark\/latest\/data-sources\/couchbase.html\"> For reference<\/a><\/strong><\/span><span hidden class=\"__iawmlf-post-loop-links\" data-iawmlf-links=\"[{&quot;id&quot;:1936,&quot;href&quot;:&quot;https:\\\/\\\/docs.databricks.com\\\/spark\\\/latest\\\/data-sources\\\/couchbase.html&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20171007022349\\\/https:\\\/\\\/docs.databricks.com\\\/spark\\\/latest\\\/data-sources\\\/couchbase.html&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2025-12-10 11:47:29&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-20 15:55:09&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-26 11:06:28&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-30 04:24:42&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-19 13:41:06&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-24 11:06:03&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-21 15:43:24&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-09 09:44:58&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-14 12:05:41&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-26 17:22:05&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-01 11:00:41&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-07 08:48:25&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-12 07:59:47&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-25 14:49:48&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-01 15:28:39&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-21 23:40:41&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-27 19:48:25&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-03 04:51:30&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-07-03 04:51:30&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;}]\"><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Objective In this Cassandra Tutorial, we will discuss the CQL clauses that are used along with different commands. CQL clauses are used to specify data that has to be used in a program&#46;&#46;&#46;<\/p>\n","protected":false},"author":7,"featured_media":16790,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[2326,2558,2559,3023,9329,12699],"class_list":["post-16780","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cassandra","tag-cassandra-clauses","tag-clauses-in-cassandra","tag-clauses-in-cql","tag-cql-clauses","tag-orderby-clause","tag-select-clause"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CQL Clauses - Select, Where, OrderBy Clauses in Cassandra - DataFlair<\/title>\n<meta name=\"description\" content=\"CQL Clauses- Cassandra Clauses, CQL Select clause, CQL Where clause, CQL orderby clause with syntax and examples, Cassandra Query Language Clauses\" \/>\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\/cql-clauses\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CQL Clauses - Select, Where, OrderBy Clauses in Cassandra - DataFlair\" \/>\n<meta property=\"og:description\" content=\"CQL Clauses- Cassandra Clauses, CQL Select clause, CQL Where clause, CQL orderby clause with syntax and examples, Cassandra Query Language Clauses\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/cql-clauses\/\" \/>\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-05-27T07:10:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-04-05T08:15:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01.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=\"3 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CQL Clauses - Select, Where, OrderBy Clauses in Cassandra - DataFlair","description":"CQL Clauses- Cassandra Clauses, CQL Select clause, CQL Where clause, CQL orderby clause with syntax and examples, Cassandra Query Language Clauses","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\/cql-clauses\/","og_locale":"en_US","og_type":"article","og_title":"CQL Clauses - Select, Where, OrderBy Clauses in Cassandra - DataFlair","og_description":"CQL Clauses- Cassandra Clauses, CQL Select clause, CQL Where clause, CQL orderby clause with syntax and examples, Cassandra Query Language Clauses","og_url":"https:\/\/data-flair.training\/blogs\/cql-clauses\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2018-05-27T07:10:57+00:00","article_modified_time":"2021-04-05T08:15:31+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/cql-clauses\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/cql-clauses\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/beb0cab24b7aa54423a3b50e669a9dcd"},"headline":"CQL Clauses &#8211; Select, Where, OrderBy Clauses in Cassandra","datePublished":"2018-05-27T07:10:57+00:00","dateModified":"2021-04-05T08:15:31+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/cql-clauses\/"},"wordCount":499,"commentCount":0,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/cql-clauses\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01.jpg","keywords":["Cassandra Clauses","Clauses in Cassandra","Clauses in CQL","CQL Clauses","ORDERBY Clause","SELECT Clause"],"articleSection":["Cassandra Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/cql-clauses\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/cql-clauses\/","url":"https:\/\/data-flair.training\/blogs\/cql-clauses\/","name":"CQL Clauses - Select, Where, OrderBy Clauses in Cassandra - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/cql-clauses\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/cql-clauses\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01.jpg","datePublished":"2018-05-27T07:10:57+00:00","dateModified":"2021-04-05T08:15:31+00:00","description":"CQL Clauses- Cassandra Clauses, CQL Select clause, CQL Where clause, CQL orderby clause with syntax and examples, Cassandra Query Language Clauses","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/cql-clauses\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/cql-clauses\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/cql-clauses\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01.jpg","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/05\/CQL-CLAUSES-01.jpg","width":1200,"height":628,"caption":"CQL Clauses - Select, Where, OrderBy Clauses"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/cql-clauses\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"Cassandra Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/cassandra\/"},{"@type":"ListItem","position":3,"name":"CQL Clauses &#8211; Select, Where, OrderBy Clauses in Cassandra"}]},{"@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\/beb0cab24b7aa54423a3b50e669a9dcd","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c322416204232f4dd97ef3901b0a499a5d34d7ba7fe333f4bfe53a907873d293?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c322416204232f4dd97ef3901b0a499a5d34d7ba7fe333f4bfe53a907873d293?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c322416204232f4dd97ef3901b0a499a5d34d7ba7fe333f4bfe53a907873d293?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"DataFlair Team specializes in creating clear, actionable content on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Backed by industry expertise, we make learning easy and career-oriented for beginners and pros alike.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam3\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/16780","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\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=16780"}],"version-history":[{"count":5,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/16780\/revisions"}],"predecessor-version":[{"id":90511,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/16780\/revisions\/90511"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/16790"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=16780"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=16780"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=16780"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}