{"id":7049,"date":"2023-07-25T00:00:00","date_gmt":"2023-07-25T04:00:00","guid":{"rendered":"https:\/\/www.sisense.com\/everything-about-group-by\/"},"modified":"2024-09-23T15:29:50","modified_gmt":"2024-09-23T19:29:50","slug":"everything-about-group-by","status":"publish","type":"post","link":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/","title":{"rendered":"SQL GROUP BY \u2014 Everything you need to know"},"content":{"rendered":"<p><\/p>\r\n<h2>A brief tutorial\u00a0<\/h2>\r\n<p>Group by is one of the most frequently used SQL clauses. It allows you to collapse a field into its distinct values. This clause is most often used with aggregations to show one value per grouped field or combination of fields.<\/p>\r\n<p>Consider the following table:<\/p>\r\n<figure class=\"wp-block-image fancybox\"><img decoding=\"async\" class=\"wp-image-73387\" src=\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/image-1-groupby-blog.png\" alt=\"Country chart\" \/><\/figure>\r\n<p>We can use an SQL group by and aggregates to collect multiple types of information. For example, an SQL group by can quickly tell us the number of countries on each continent.<\/p>\r\n<pre class=\"wp-block-code\"><code>-- How many countries are in each continent?\r\nselect\r\n  continent\r\n  , count(*)\r\nfrom \r\n  countries\r\ngroup by \r\n  continent<\/code><\/pre>\r\n<figure class=\"wp-block-image fancybox\"><img decoding=\"async\" class=\"wp-image-73392\" src=\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/image-2-groupby-blog.png\" alt=\"\" \/><\/figure>\r\n<p>Keep in mind when using SQL GROUP BY:<\/p>\r\n<ul>\r\n<li>Group by X means put all those with the same value for X in the same row.<\/li>\r\n<li>Group by X, Y put all those with the same values for both X and Y in the same row.<\/li>\r\n<\/ul>\r\n<h2>More interesting things about SQL GROUP BY<\/h2>\r\n<h3>1. Aggregations can be filtered using the HAVING clause<\/h3>\r\n<p>You will quickly discover that the where clause cannot be used on an aggregation. For instance:<\/p>\r\n<pre class=\"wp-block-code\"><code>select \r\n  continent\r\n  , max(area)\r\nfrom\r\n  countries\r\nwhere \r\n  max(area) &gt;= 1e7\r\ngroup by \r\n  1<\/code><\/pre>\r\n<p>will not work, and will throw an error. This is because the where statement is evaluated before any aggregations take place. The alternate having is placed after the group by and allows you to filter the returned data by an aggregated column.<\/p>\r\n<p>Using having, you can return the aggregate filtered results!<\/p>\r\n<h3>2. You can often GROUP BY column number<\/h3>\r\n<p>In many databases, you can group by column number as well as column name. Our first query could have been written:<\/p>\r\n<pre class=\"wp-block-code\"><code>select \r\n  continent\r\n  , count(*)\r\nfrom \r\n  base\r\ngroup by \r\n  1<\/code><\/pre>\r\n<p>and returned the same results. This is called ordinal notation and its use is debated. It predates column based notation and was SQL standard until the 1980s.\u00a0<\/p>\r\n<ul>\r\n<li>It is less explicit, which can reduce legibility for some users.\u00a0<\/li>\r\n<li>It can be more brittle. A query select statement can have a column name changed and continue to run, producing an unexpected result.<\/li>\r\n<\/ul>\r\n<p>On the other hand, it has a few benefits.<\/p>\r\n<ul>\r\n<li>SQL coders tend toward a consistent pattern of selecting dimensions first and aggregates second. This makes reading SQL more predictable.<\/li>\r\n<li>It is easier to maintain on large queries. When writing long ETL statements, I have had group by statements that were many, many lines long. I found this difficult to maintain.<\/li>\r\n<li>Some databases allow using an aliased column in the group by. This allows a long case statement to be grouped without repeating the full statement in the group by clause. Using ordinal positions can be cleaner and prevent you from unintentionally grouping by an alias that matches a column name in the underlying data. For example, the following query will return the correct values:<\/li>\r\n<\/ul>\r\n<pre class=\"wp-block-code\"><code>-- How many countries use a currency called the dollar?\r\nselect\r\n  case when currency = 'Dollar' then currency\r\n    else 'Other'\r\n  end as currency --bad alias\r\n  , count(*)\r\nfrom\r\n  countries\r\ngroup by\r\n  1<\/code><\/pre>\r\n<figure class=\"wp-block-image fancybox\"><img decoding=\"async\" class=\"wp-image-73397\" src=\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/image-3-groupby-blog.png\" alt=\"Currency count table\" \/><\/figure>\r\n<p>But this will not, and will segment by the <strong>base table&#8217;s<\/strong> currency field <em>while accepting the new alias column labels<\/em>:<\/p>\r\n<pre class=\"wp-block-code\"><code>select\r\n  case when currency = 'Dollar' then currency \r\n    else 'Other' \r\n  end as currency --bad alias\r\n  , count(*)\r\nfrom \r\n  countries\r\ngroup by \r\n  currency<\/code><\/pre>\r\n<figure class=\"wp-block-image fancybox\"><img decoding=\"async\" class=\"wp-image-73402\" src=\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/image-4-groupby-blog.png\" alt=\"Dollar and others chart\" \/><\/figure>\r\n<p>This is &#8216;expected&#8217; behavior, but remain vigilant.<\/p>\r\n<p>A common practice is to use ordinal positions for ad hoc work and column names for production code. This will ensure you are being completely explicit for future users who need to change your code.<\/p>\r\n<h3>3. The implicit GROUP BY<\/h3>\r\n<p>There is one case where you can take an aggregation without using a group by. When you are aggregating the full table there is an implied SQL group by. This is known as the in SQL standards documentation.<\/p>\r\n<pre class=\"wp-block-code\"><code>-- What is the largest and average country size in Europe?\r\nselect\r\n  max(area) as largest_country\r\n  , avg(area) as avg_country_area\r\nfrom \r\n  countries\r\nwhere \r\n  continent = 'Europe'<\/code><\/pre>\r\n<figure class=\"wp-block-image fancybox\"><img decoding=\"async\" class=\"wp-image-73407\" src=\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/image-5-groupby-blog.png\" alt=\"Largest country table\" \/><\/figure>\r\n<h3>4. GROUP BY treats Null as groupable value, and that is strange.<\/h3>\r\n<p>When your data set contains multiple null values, group by will treat them as a single value and aggregate for the set.<\/p>\r\n<p>This does not conform to the standard use of null, which is never equal to anything including itself.<\/p>\r\n<pre class=\"wp-block-code\"><code>select null = null\r\n-- returns null, not True<\/code><\/pre>\r\n<p>From the SQL standards guidelines in SQL:2008<\/p>\r\n<blockquote class=\"wp-block-quote\">\r\n<p>\u201cAlthough the null value is neither equal to any other value nor not equal to any other value \u2014 it is unknown whether or not it is equal to any given value \u2014 in some contexts, multiple null values are treated together; for example, the treats all null values together.\u201d<\/p>\r\n<\/blockquote>\r\n<h3>5. MySQL allows you to GROUP BY without specifying all your non-aggregate columns<\/h3>\r\n<p>In MySQL, unless you change some database settings, you can run queries like only a subset of the select dimensions grouped, and still get results. As an example, in MySQL this will return an answer, populating the state column with a randomly chosen value from those available.<\/p>\r\n<pre class=\"wp-block-code\"><code>select \r\n  country\r\n  , state\r\n  , count(*)\r\nfrom\r\n  countries\r\ngroup by \r\n  country<\/code><\/pre>\r\n<p>That&#8217;s all for today! Group by is a commonly used keyword, but hopefully you now have a clearer understanding of some of its more nuanced uses.<\/p>","protected":false},"excerpt":{"rendered":"<p>A brief tutorial\u00a0 Group by is one of the most frequently used SQL clauses. It allows you to collapse a field into its distinct values. This clause is most often used with aggregations to show one value per grouped field&#8230;<\/p>\n","protected":false},"author":4,"featured_media":7238,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_searchwp_excluded":"","footnotes":"","_links_to":"","_links_to_target":""},"categories":[44],"tags":[472],"application":[10],"buyer-role":[],"buyer-stage":[],"department":[6],"industry":[],"topic":[73],"class_list":["post-7049","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech-talk","tag-data-team","application-cloud-data-teams","department-it","topic-sql-superstar"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.5 (Yoast SEO v23.8) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SQL GROUP BY - Everything You Need To Know | Sisense<\/title>\n<meta name=\"description\" content=\"Group by is one of the most frequently used SQL clauses. It allows you to collapse a field into its distinct values.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL GROUP BY \u2014 Everything you need to know\" \/>\n<meta property=\"og:description\" content=\"A brief tutorial\u00a0 Group by is one of the most frequently used SQL clauses. It allows you to collapse a field into its distinct values. This clause is most\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/\" \/>\n<meta property=\"og:site_name\" content=\"Sisense\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-25T04:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-23T19:29:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/yoast-groupby-blog-min.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=\"Sisense Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/yoast-groupby-blog-min.jpg\" \/>\n<meta name=\"twitter:creator\" content=\"@sisense\" \/>\n<meta name=\"twitter:site\" content=\"@sisense\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sisense Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/\"},\"author\":{\"name\":\"Sisense Team\",\"@id\":\"https:\/\/www.sisense.com\/#\/schema\/person\/e70aa3a7bbc471e4b7b8c5a7d2b36115\"},\"headline\":\"SQL GROUP BY \u2014 Everything you need to know\",\"datePublished\":\"2023-07-25T04:00:00+00:00\",\"dateModified\":\"2024-09-23T19:29:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/\"},\"wordCount\":725,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.sisense.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/2024\/07\/10161902\/featured-groupby-blog-min1.jpg\",\"keywords\":[\"data team\"],\"articleSection\":[\"Tech Talk\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/\",\"url\":\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/\",\"name\":\"SQL GROUP BY - Everything You Need To Know | Sisense\",\"isPartOf\":{\"@id\":\"https:\/\/www.sisense.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/2024\/07\/10161902\/featured-groupby-blog-min1.jpg\",\"datePublished\":\"2023-07-25T04:00:00+00:00\",\"dateModified\":\"2024-09-23T19:29:50+00:00\",\"description\":\"Group by is one of the most frequently used SQL clauses. It allows you to collapse a field into its distinct values.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#primaryimage\",\"url\":\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/2024\/07\/10161902\/featured-groupby-blog-min1.jpg\",\"contentUrl\":\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/2024\/07\/10161902\/featured-groupby-blog-min1.jpg\",\"width\":1200,\"height\":628,\"caption\":\"featured groupby blog\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sisense.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL GROUP BY \u2014 Everything you need to know\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sisense.com\/#website\",\"url\":\"https:\/\/www.sisense.com\/\",\"name\":\"Sisense\",\"description\":\"Build your business with anywhere-analytics\",\"publisher\":{\"@id\":\"https:\/\/www.sisense.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sisense.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.sisense.com\/#organization\",\"name\":\"Sisense\",\"url\":\"https:\/\/www.sisense.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sisense.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/sisense-yoast-og.jpg\",\"contentUrl\":\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/sisense-yoast-og.jpg\",\"width\":1200,\"height\":600,\"caption\":\"Sisense\"},\"image\":{\"@id\":\"https:\/\/www.sisense.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/sisense\",\"https:\/\/www.linkedin.com\/company\/sisense\",\"https:\/\/github.com\/sisense\/\"],\"description\":\"Sisense accelerates product innovation through AI\/ML capabilities. Our global analytics platform lets customers drive better, faster decisions for their business and end users.\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sisense.com\/#\/schema\/person\/e70aa3a7bbc471e4b7b8c5a7d2b36115\",\"name\":\"Sisense Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sisense.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/213e415f47bc3c7f0155a0755b1cea8c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/213e415f47bc3c7f0155a0755b1cea8c?s=96&d=mm&r=g\",\"caption\":\"Sisense Team\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SQL GROUP BY - Everything You Need To Know | Sisense","description":"Group by is one of the most frequently used SQL clauses. It allows you to collapse a field into its distinct values.","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:\/\/www.sisense.com\/blog\/everything-about-group-by\/","og_locale":"en_US","og_type":"article","og_title":"SQL GROUP BY \u2014 Everything you need to know","og_description":"A brief tutorial\u00a0 Group by is one of the most frequently used SQL clauses. It allows you to collapse a field into its distinct values. This clause is most","og_url":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/","og_site_name":"Sisense","article_published_time":"2023-07-25T04:00:00+00:00","article_modified_time":"2024-09-23T19:29:50+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/yoast-groupby-blog-min.jpg","type":"image\/jpeg"}],"author":"Sisense Team","twitter_card":"summary_large_image","twitter_image":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/yoast-groupby-blog-min.jpg","twitter_creator":"@sisense","twitter_site":"@sisense","twitter_misc":{"Written by":"Sisense Team","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#article","isPartOf":{"@id":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/"},"author":{"name":"Sisense Team","@id":"https:\/\/www.sisense.com\/#\/schema\/person\/e70aa3a7bbc471e4b7b8c5a7d2b36115"},"headline":"SQL GROUP BY \u2014 Everything you need to know","datePublished":"2023-07-25T04:00:00+00:00","dateModified":"2024-09-23T19:29:50+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/"},"wordCount":725,"commentCount":0,"publisher":{"@id":"https:\/\/www.sisense.com\/#organization"},"image":{"@id":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/2024\/07\/10161902\/featured-groupby-blog-min1.jpg","keywords":["data team"],"articleSection":["Tech Talk"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/","url":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/","name":"SQL GROUP BY - Everything You Need To Know | Sisense","isPartOf":{"@id":"https:\/\/www.sisense.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#primaryimage"},"image":{"@id":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/2024\/07\/10161902\/featured-groupby-blog-min1.jpg","datePublished":"2023-07-25T04:00:00+00:00","dateModified":"2024-09-23T19:29:50+00:00","description":"Group by is one of the most frequently used SQL clauses. It allows you to collapse a field into its distinct values.","breadcrumb":{"@id":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sisense.com\/blog\/everything-about-group-by\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#primaryimage","url":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/2024\/07\/10161902\/featured-groupby-blog-min1.jpg","contentUrl":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/2024\/07\/10161902\/featured-groupby-blog-min1.jpg","width":1200,"height":628,"caption":"featured groupby blog"},{"@type":"BreadcrumbList","@id":"https:\/\/www.sisense.com\/blog\/everything-about-group-by\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sisense.com\/"},{"@type":"ListItem","position":2,"name":"SQL GROUP BY \u2014 Everything you need to know"}]},{"@type":"WebSite","@id":"https:\/\/www.sisense.com\/#website","url":"https:\/\/www.sisense.com\/","name":"Sisense","description":"Build your business with anywhere-analytics","publisher":{"@id":"https:\/\/www.sisense.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sisense.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.sisense.com\/#organization","name":"Sisense","url":"https:\/\/www.sisense.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sisense.com\/#\/schema\/logo\/image\/","url":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/sisense-yoast-og.jpg","contentUrl":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/sisense-yoast-og.jpg","width":1200,"height":600,"caption":"Sisense"},"image":{"@id":"https:\/\/www.sisense.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/sisense","https:\/\/www.linkedin.com\/company\/sisense","https:\/\/github.com\/sisense\/"],"description":"Sisense accelerates product innovation through AI\/ML capabilities. Our global analytics platform lets customers drive better, faster decisions for their business and end users."},{"@type":"Person","@id":"https:\/\/www.sisense.com\/#\/schema\/person\/e70aa3a7bbc471e4b7b8c5a7d2b36115","name":"Sisense Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sisense.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/213e415f47bc3c7f0155a0755b1cea8c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/213e415f47bc3c7f0155a0755b1cea8c?s=96&d=mm&r=g","caption":"Sisense Team"}}]}},"_links":{"self":[{"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/posts\/7049"}],"collection":[{"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/comments?post=7049"}],"version-history":[{"count":0,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/posts\/7049\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/media\/7238"}],"wp:attachment":[{"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/media?parent=7049"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/categories?post=7049"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/tags?post=7049"},{"taxonomy":"application","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/application?post=7049"},{"taxonomy":"buyer-role","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/buyer-role?post=7049"},{"taxonomy":"buyer-stage","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/buyer-stage?post=7049"},{"taxonomy":"department","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/department?post=7049"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/industry?post=7049"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/topic?post=7049"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}