{"id":50747,"date":"2024-06-26T08:00:00","date_gmt":"2024-06-26T15:00:00","guid":{"rendered":""},"modified":"2024-09-12T08:21:27","modified_gmt":"2024-09-12T15:21:27","slug":"getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql","status":"publish","type":"post","link":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/","title":{"rendered":"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL"},"content":{"rendered":"\n<p>AI is transforming everything we do, including how we interact with data. Data is the fuel for AI. Microsoft SQL Server and <a href=\"https:\/\/azure.microsoft.com\/en-us\/products\/azure-sql\/\">Azure SQL<\/a> is the data platform&nbsp;to power today\u2019s modern applications with security, performance, and availability, but also have capabilities and support scenarios required in the era of AI.<\/p>\n\n\n\n<p>Azure SQL and SQL Server support building new generative AI experiences that become supercharged when combined with your data. In addition, SQL brings AI assistance to a new level with copilot experiences for both self-help and natural language to SQL capabilities.<\/p>\n\n\n\n<p>In this blog post, I\u2019ll share how you can get started with these <a href=\"https:\/\/azure.microsoft.com\/en-us\/products\/azure-sql\/database\/\" target=\"_blank\" rel=\"noreferrer noopener\">new AI experiences<\/a>\u2014Azure SQL and SQL Server. First, check out our latest story on Microsoft Mechanics:<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/aka.ms\/SQLAIMechanics\" target=\"_blank\" rel=\"noreferrer noopener\"><img decoding=\"async\" src=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/SQL-Server.webp\" alt=\"Use AI with your SQL Data infographic with Large Language Model on left, SQL graphic in the middle, Copilot logo on the right, and Retrieval Augmented Generation named below.\" class=\"wp-image-50748 webp-format\" srcset=\"\" data-orig-src=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/SQL-Server.webp\"><\/a><\/figure>\n\n\n\n<p><a href=\"https:\/\/aka.ms\/SQLAIMechanics\"><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"responsible-ai\">Responsible AI<\/h2>\n\n\n\n<p>Many conversations about AI starts with a statement on <a href=\"https:\/\/www.microsoft.com\/en-us\/ai\/responsible-ai\" target=\"_blank\" rel=\"noreferrer noopener\">responsible AI<\/a>. Microsoft has established a set of policies, research, engineering efforts, and principles to ensure AI technologies are adopted, implemented, and used in a responsible manner.<\/p>\n\n\n\n<p>These principles include fairness, reliability and safety, privacy and security, inclusiveness, transparency, and accountability. Your data is your data. One promise for Microsoft is that private data of any user, including prompts and responses, are never used to fine tune a model that Microsoft hosts or implements.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"generative-ai-applications-with-your-data\">Generative AI applications with your data<\/h2>\n\n\n\n<p>One of the motivations for generative AI applications is to become more productive, creative, and efficient through the generation of content in all forms: text, audio, and video. Many of today\u2019s examples for generative AI applications involve the user of a <em>natural language prompt<\/em> and the interaction with a <em>language model<\/em>. Many of you have probably at some point used an application like <a href=\"https:\/\/chat.openai.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">ChatGPT<\/a> or <a href=\"https:\/\/copilot.microsoft.com\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft Copilot<\/a> which are great examples of generative AI applications.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"get-smarter-with-your-data\">Get smarter with your data<\/h2>\n\n\n\n<p>While these are great applications, they don&#8217;t know about your data. The combination of a generative AI application with your data, for example, stored in a database, can be quite powerful. Generative AI provides methods for <em>smarter searching<\/em> on your data. A common application pattern is to use language models with a prompt application to \u201cchat with your data.\u201d Using the concept of <em>vector embeddings<\/em>, language models allow you to get more precision on questions about your data. In addition, responses to questions are more tailored to your users and searches can often be faster because language models allow you to use the power of natural language. Generative AI applications with your data provide unique intelligence in an interactive manner, including conversations. Language models are trained to provide more context on your search, often giving you more (hence generated) content than you might normally get using common searching techniques within a database engine with a language like SQL.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prompt-engineering-retrieval-augmented-generation-fundamentals-and-hybrid-search\">Prompt engineering, Retrieval Augmented Generation fundamentals, and hybrid search<\/h2>\n\n\n\n<p>As you investigate how you can take advantage of generative AI with language models, there are two important concepts to understand:<\/p>\n\n\n\n<p><strong><em>Prompt engineering<\/em><\/strong> is the discipline of using high quality and descriptive prompts when interacting with a language model. The concept is simple. The better the prompt, the likelihood of a better response from the model. For example, let\u2019s say you use Microsoft Copilot and type in a prompt like \u201c<em>What are the best steak restaurants in Fort Worth, Texas?<\/em>\u201d You will get a good list of steak houses in Fort Worth, Texas based on a search by Copilot of rankings across a broad set of searches. But what if you are on a bit of a tight budget? Instead of looking at the results from the prompt and trying to figure out what prices you can afford you could instead ask \u201c<em>I&#8217;m on a tight budget but want to eat at a good steakhouse in Fort Worth, Texas.<\/em>\u201d Now your results are more tailored for what you really want. And since you are interacting with a language model, it understands the phrase \u201ctight budget\u201d means you need choices that are good but affordable.<\/p>\n\n\n\n<p>While this technique can be great if you are interacting with a model that is trained to help you search the internet, what about your own data? One prompt engineering technique to get smarter with your data is called <strong><em>Retrieval Augmented Generation<\/em><\/strong> (RAG). The concept of RAG is to search for information from a source of data and use those results to <em>augment<\/em> the prompt to the model. For Azure SQL and SQL Server, this could mean using standard SQL techniques to search for data using Transact-SQL (T-SQL), taking these results, and sending them along with the original prompt to the language model. This technique is simple and can be an effective way to get smarter with your data, and this can work with almost any type of data you search, not just SQL databases.<\/p>\n\n\n\n<p>For Azure SQL and SQL Server, a more sophisticated technique is called <strong><em>hybrid search<\/em><\/strong>. With hybrid search, you can use the power of <strong><em>vector <\/em><\/strong>search combined with the query capabilities of your SQL data. Vector embeddings are numerical representations of data that capture semantic meaning and similarities. The key to embeddings with language models is that the model can generate embeddings based on data like text. This means you can take text data inside your SQL database and use a model to generate embeddings and then store these embeddings in your database. Now anytime you want to search for data inside the database, you can send a prompt to a language model which will generate embeddings for the prompt. And then you can use <strong><em>vector search<\/em><\/strong> techniques to compare the embeddings from the prompt with the embeddings stored in your database. You can then combine the vector search with other techniques you would normally use in T-SQL to find data in your database: a hybrid search.<\/p>\n\n\n\n<p>There are methods today to use hybrid search completely inside the engine using T-SQL and outside the engine using <a href=\"https:\/\/azure.microsoft.com\/en-us\/products\/ai-services\/\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft Azure AI Services<\/a> or frameworks like LangChain or Semantic Kernel.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"get-started-quickly-with-azure-ai-services\">Get started quickly with Azure AI Services<\/h2>\n\n\n\n<p>One approach to get started quickly with no code required is to index your SQL database using Azure AI Search and then use <a href=\"https:\/\/azure.microsoft.com\/en-us\/products\/ai-services\/openai-service\" target=\"_blank\" rel=\"noreferrer noopener\">Azure OpenAI Service<\/a> to build a simple prompt app and \u201cchat with your data\u201d using a hybrid search technique.<\/p>\n\n\n\n<p>You can use <a href=\"https:\/\/azure.microsoft.com\/en-us\/products\/ai-services\/ai-search\/\" target=\"_blank\" rel=\"noreferrer noopener\">Azure AI Search<\/a> to build an index based on a table in your SQL Server or Azure SQL database. When you build the index, you can apply a <strong><em>skillset<\/em><\/strong> to generate embeddings based on your data and store the result in the index. Now you can use Azure OpenAI with a prompt application to perform hybrid searches on your data. One example prompt application to perform simple testing is to use <a href=\"https:\/\/azure.microsoft.com\/en-us\/products\/ai-studio?ref=therundown\" target=\"_blank\" rel=\"noreferrer noopener\">Azure AI Studio<\/a>. In addition, as you change your SQL data, the index is automatically updated including the embeddings. The figure below shows the basic flow:<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/SQL-Server-basic-flow.webp\" alt=\"Use Azure AI Services with your SQL data flow chart\" class=\"wp-image-50753 webp-format\" srcset=\"\" data-orig-src=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/SQL-Server-basic-flow.webp\"><\/figure>\n\n\n\n<p>You can see this in action from the latest Microsoft Mechanics video or <a href=\"https:\/\/aka.ms\/sqlaidemos\" target=\"_blank\" rel=\"noreferrer noopener\">download a deck<\/a> with demo recordings. One of the interesting aspects of this example is the method of changing the system message to direct the language model to respond in a unique way <em>using the same data<\/em>. This is also a great example of prompt engineering.<\/p>\n\n\n\n<p>Learn more about <a href=\"https:\/\/learn.microsoft.com\/en-us\/azure\/search\/search-howto-connecting-azure-sql-database-to-azure-search-using-indexers\" target=\"_blank\" rel=\"noreferrer noopener\">Azure SQL in Azure AI Search<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"use-hybrid-search-inside-the-engine-with-t-sql\">Use hybrid search inside the engine with T-SQL<\/h2>\n\n\n\n<p>Let\u2019s say instead of using a separate index, you would like to build generative AI capabilities for your application all inside the engine using T-SQL. You can do this in a very powerful way for <a href=\"https:\/\/azure.microsoft.com\/en-us\/products\/azure-sql\/database\/\" target=\"_blank\" rel=\"noreferrer noopener\">Azure SQL Database<\/a> today using a combination of vector embeddings, vector search, and other T-SQL search methods. This is a true hybrid search because you are using all the power of the SQL query processor together with a vector search. An example my colleague Davide Mauri has developed uses these techniques to help him find the best restaurant for one of this favorite Italian foods, focaccia bread.<\/p>\n\n\n\n<p>Davide built an application that stores reviews from restaurants in the form of vector embeddings using Azure OpenAI Service with Azure SQL Database Representational State Transfer (REST) API inside the engine. With this in place, he can take any prompt to search for the best focaccia bread and use the same technique to generate embeddings for the prompt. Then, he can use a new T-SQL <strong>vector_distance<\/strong> function to perform a similarity search. The true power of SQL is possible because Davide built queries to combine this vector search with other criteria from spatial types, the new JSON data type, and the new Regular Expression (RegEx) T-SQL capabilities.<\/p>\n\n\n\n<p>You can see a diagram of how these techniques are combined together below:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"900\" height=\"506\" src=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/hybrid-search-with-Azure-SQL.jpg\" alt=\"Hybrid search with Azure SQL example\" class=\"wp-image-50765\" srcset=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/hybrid-search-with-Azure-SQL.jpg 900w, https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/hybrid-search-with-Azure-SQL-300x169.jpg 300w, https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/hybrid-search-with-Azure-SQL-768x432.jpg 768w\" sizes=\"auto, (max-width: 900px) 100vw, 900px\" \/><\/figure>\n\n\n\n<p>You can see this demo in action in our Microsoft Mechanics video or download a deck with demo recordings. You can learn more about the <a href=\"https:\/\/learn.microsoft.com\/en-us\/sql\/t-sql\/data-types\/json-data-type?view=azuresqldb-current\" target=\"_blank\" rel=\"noreferrer noopener\">new JSON data type (preview)<\/a>. You can also sign-up to preview the <a href=\"https:\/\/aka.ms\/azuresql-vector-eap\" target=\"_blank\" rel=\"noreferrer noopener\">new vector search capabilities<\/a> and <a href=\"https:\/\/aka.ms\/regex-preview-signup\" target=\"_blank\" rel=\"noreferrer noopener\">RegEx in Azure SQL Database<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"building-generative-ai-applications-using-frameworks\">Building generative AI applications using frameworks<\/h2>\n\n\n\n<p>There are other methods to build generative AI applications with Azure SQL and SQL Server using frameworks such as:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>LangChain<\/strong>:<br><a href=\"https:\/\/www.langchain.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">LangChain is an open-source framework<\/a> to orchestrate AI applications with language models. You can use programming languages such as Python and JavaScript to build your own generative AI application. LangChain supports the <a href=\"https:\/\/js.langchain.com\/v0.2\/docs\/integrations\/toolkits\/sql\/\" target=\"_blank\" rel=\"noreferrer noopener\">SQL Agent Toolkit<\/a> which allows you to interact with a SQL database using natural language prompts. The toolkit integrates the connection to your database with a language model to generate SQL queries based on natural language prompts. You can see an example of this in the blog post &#8220;<a href=\"https:\/\/devblogs.microsoft.com\/azure-sql\/building-your-own-db-copilot-for-azure-sql-with-azure-openai-gpt-4\/\" target=\"_blank\" rel=\"noreferrer noopener\">Building your own DB Copilot for Azure&nbsp;SQL with Azure OpenAI GPT-4<\/a>.&#8221;<\/li>\n\n\n\n<li><strong>Semantic Kernel<\/strong>:<br>Semantic Kernel is an open-source SDK to allow you to build AI applications in C#, Python, and Java, interfacing with many common models in the industry such as OpenAI, Azure OpenAI, and <a href=\"https:\/\/huggingface.co\/\" target=\"_blank\" rel=\"noreferrer noopener\">Hugging Face<\/a>. A library has been built to allow a Semantic Kernel application to interact with Azure SQL Database (and use the new vector search capability) called the <a href=\"https:\/\/github.com\/microsoft\/semantic-kernel\/tree\/main\/dotnet\/src\/Connectors\/Connectors.Memory.SqlServer\" target=\"_blank\" rel=\"noreferrer noopener\">SQL Connector<\/a>.<\/li>\n<\/ul>\n\n\n\n<p>See a full range of <a href=\"https:\/\/aka.ms\/sqlaisamples\" target=\"_blank\" rel=\"noreferrer noopener\">SQL and generative AI examples<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"the-age-of-copilots\">The age of copilots<\/h2>\n\n\n\n<p>Microsoft has transformed the industry and how we work and live with a new set of AI assisted experiences called Microsoft Copilot. Copilots are AI companions that work everywhere you do and intelligently adapt to your needs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"use-copilots-where-you-live\">Use Copilots where you live<\/h3>\n\n\n\n<p>I realize there seem to be copilots everywhere. It is hard to keep track. Microsoft is investing in Copilot experiences in almost every product or service. Use the product or service you normally do and see what Copilot can offer. For example, if you have Microsoft 365, use <a href=\"https:\/\/www.microsoft.com\/en-us\/microsoft-365\/enterprise\/copilot-for-microsoft-365\" target=\"_blank\" rel=\"noreferrer noopener\">Copilot for Microsoft 365<\/a> naturally within Microsoft Teams or any Office product or service. I personally use <a href=\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft Copilot<\/a> in my Edge browser or on the app on my phone for any search experience I need today\u2014web or work related.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"microsoft-copilot-in-azure\">Microsoft Copilot in Azure<\/h3>\n\n\n\n<p>The primary resource to manage and explore <a href=\"http:\/\/azure.microsoft.com\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft Azure<\/a> is the Azure portal. You can now use <a href=\"https:\/\/learn.microsoft.com\/en-us\/azure\/copilot\/overview\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft Copilot in Azure<\/a> within the Azure portal to manage, deploy, and troubleshoot Azure resources. Azure SQL Database is one of the most popular Azure resources in the world, so we have built two distinct experiences within the Copilot in Azure framework using natural language for self-guided assistance and T-SQL query authoring:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"microsoft-copilot-in-azure-integration\">Microsoft Copilot in Azure integration<\/h4>\n\n\n\n<p>One of the strengths of SQL Server is the deep built-in telemetry within the engine all accessible through T-SQL. This includes Dynamic Management Views (DMV) and Query Store. These rich, traditional capabilities shine through now in Copilot. For example, you can prompt with Copilot a general statement like \u201cMy database is slow\u201d and Copilot, based on your permissions, will access real-time diagnostic data, in the context of your database, to help you quickly navigate difficult, and often vague, performance problems. Here is an example:<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/SQL-Server-copilot-example.webp\" alt=\"Screenshot of an example of using Copilot for SQL to troubleshoot performance\" class=\"wp-image-50757 webp-format\" srcset=\"\" data-orig-src=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/SQL-Server-copilot-example.webp\"><\/figure>\n\n\n\n<p>You can then continue a conversation with Copilot to tune the query causing the problem. There are many different <em>skills<\/em> that Copilot can help you all in the context of your database. Learn about all the possibilities of <a href=\"https:\/\/aka.ms\/sqlcopilot\" target=\"_blank\" rel=\"noreferrer noopener\">Copilot skills in Azure SQL Database (preview)<\/a>.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"natural-language-to-sql\">Natural language to SQL<\/h4>\n\n\n\n<p>The T-SQL query language has so many great capabilities and possibilities. But the open nature of T-SQL also leads to difficulties in crafting queries to meet the need of your application. Along comes a copilot experience to allow you to \u201cchat\u201d with your database using natural language in the context of your database and schema: table, columns, and key relationships. A simple example is being able use a natural language statement to generate a query that typically requires several joins over multiple tables like the following:<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/Authoring-SQL-queries-using-Natural-Language.webp\" alt=\"Screenshot of dashboard authoring SQL queries using Natural Language\" class=\"wp-image-50766 webp-format\" srcset=\"\" data-orig-src=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/Authoring-SQL-queries-using-Natural-Language.webp\"><\/figure>\n\n\n\n<p>Learn more how to use <a href=\"https:\/\/aka.ms\/sqlcopilot\" target=\"_blank\" rel=\"noreferrer noopener\">natural language to SQL<\/a>.<\/p>\n\n\n\n<p>You can see both experiences in action in our Microsoft Mechanics video or download a deck with demo recordings.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"innovations-moving-forward\">Innovations moving forward<\/h2>\n\n\n\n<p>We are just beginning with SQL and AI. We have innovations for the future planned for enhancements with AI services, enhancements for deep integration for vector search, and enhanced Copilot experiences for SQL Server. Stay tuned for future blog posts showing all of these innovations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"learn-more-today\">Learn more today<\/h2>\n\n\n\n<p>Here are more resources for you to learn more about SQL and AI:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Explore the capabilities of <a href=\"https:\/\/azure.microsoft.com\/en-us\/products\/azure-sql\/database\/\" target=\"_blank\" rel=\"noreferrer noopener\">Azure SQL Database<\/a>.<\/li>\n\n\n\n<li>Keep track of SQL and AI at our <a href=\"https:\/\/aka.ms\/sqlai\" target=\"_blank\" rel=\"noreferrer noopener\">one-stop documentation hub<\/a>.<\/li>\n\n\n\n<li>Keep track of all of our <a href=\"https:\/\/aka.ms\/sqlaisamples\" target=\"_blank\" rel=\"noreferrer noopener\">SQL and AI examples<\/a>.<\/li>\n\n\n\n<li>Showcase your own demos using our <a href=\"https:\/\/aka.ms\/sqlaidemos\" target=\"_blank\" rel=\"noreferrer noopener\">decks with demo recordings built-in<\/a>.<\/li>\n\n\n\n<li>Read our team\u2019s blog on developer experiences for SQL including the latest AI examples at <a href=\"https:\/\/devblogs.microsoft.com\/azure-sql\/\" target=\"_blank\" rel=\"noreferrer noopener\">Azure SQL Devs\u2019 Corner<\/a>.<\/li>\n\n\n\n<li>To see all this in action, check out our new <a href=\"https:\/\/aka.ms\/SQLAIMechanics\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft Mechanics video<\/a>.<\/li>\n\n\n\n<li>Learn the essentials to building a <a href=\"https:\/\/learn.microsoft.com\/shows\/azure-sql-database-essentials\/\" target=\"_blank\" rel=\"noreferrer noopener\">SQL generative AI application<\/a>.<\/li>\n\n\n\n<li>Check out the <a href=\"https:\/\/devblogs.microsoft.com\/azure-sql\/unleashing-the-potential-of-generative-ai-in-azure-sql-database\/\">comprehensive blog post<\/a> from Sanjay Mishra to explore the power of generative AI applications with Azure SQL Database.<\/li>\n\n\n\n<li>Learn more about Copilot in Azure SQL Database experiences from Joe Sack\u2019s <a href=\"https:\/\/youtu.be\/B_96_R5oNs4\" target=\"_blank\" rel=\"noreferrer noopener\">Data Exposed<\/a> episode.<\/li>\n\n\n\n<li>Check out our Microsoft Build 2024 sessions:\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/build.microsoft.com\/en-US\/sessions\/b7e44f6e-ae57-4ef2-82b7-ff217ee14870?source=sessions\" target=\"_blank\" rel=\"noreferrer noopener\">Power AI apps and develop rich experiences with Azure SQL Database<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/build.microsoft.com\/en-US\/sessions\/7389d059-8f7e-4dd6-aa02-107e617df03d?source=sessions\" target=\"_blank\" rel=\"noreferrer noopener\">The power of AI and Copilot for Azure Databases<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-msxcm-cta-block\" data-moray data-bi-an=\"CTA Block\">\n\t<div class=\"card d-block mx-ng mx-md-0\">\n\t\t<div class=\"row no-gutters material-color-brand-light bg-fabric-white\">\n\n\t\t\t\t\t\t\t<div class=\"col-md-4\">\n\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"850\" height=\"566\" src=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2023\/03\/img.png\" class=\"card-img img-object-cover\" alt=\"a man sitting at a table using a laptop\" srcset=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2023\/03\/img.webp 850w, https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2023\/03\/img-300x200.webp 300w, https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2023\/03\/img-768x511.webp 768w, https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2023\/03\/img-800x533.webp 800w, https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2023\/03\/img-400x266.webp 400w\" sizes=\"auto, (max-width: 850px) 100vw, 850px\" \/>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"d-flex col-md\">\n\t\t\t\t<div class=\"card-body align-self-center p-4 p-md-5\">\n\t\t\t\t\t\n\t\t\t\t\t<h2>Azure SQL<\/h2>\n\n\t\t\t\t\t<div class=\"mb-3\">\n\t\t\t\t\t\t<p>Migrate, modernize, and innovate with the modern SQL family of cloud database services<\/p>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"link-group\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/azure.microsoft.com\/en-us\/products\/azure-sql\/\" class=\"btn btn-link text-decoration-none p-0\" target=\"_blank\">\n\t\t\t\t\t\t\t\t<span>Start your journey<\/span>\n\t\t\t\t\t\t\t\t<span class=\"glyph-append glyph-append-chevron-right glyph-append-xsmall\"><\/span>\n\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Microsoft SQL Server and Azure SQL is the data platform\u00a0to power today\u2019s modern applications with security, performance, and availability.<\/p>\n","protected":false},"author":6191,"featured_media":50776,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","footnotes":""},"post_tag":[],"product":[5226,5227],"content-type":[2448],"topic":[],"coauthors":[2512],"class_list":["post-50747","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","product-azure","product-sql","content-type-updates","review-flag-4-1593580446-456","review-flag-never-1593580314-843","review-flag-new-1593580247-437"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Getting started with delivering generative AI capabilities in SQL Server and Azure SQL - Microsoft SQL Server Blog<\/title>\n<meta name=\"description\" content=\"Get started with new generative AI experiences on Azure SQL and SQL Server, including Azure SQL Database. Learn more.\" \/>\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.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL - Microsoft SQL Server Blog\" \/>\n<meta property=\"og:description\" content=\"Get started with new generative AI experiences on Azure SQL and SQL Server, including Azure SQL Database. Learn more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft SQL Server Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/sqlserver\" \/>\n<meta property=\"article:published_time\" content=\"2024-06-26T15:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-12T15:21:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/getting-started-with-delivering.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Bob Ward\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SQLServer\" \/>\n<meta name=\"twitter:site\" content=\"@SQLServer\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Bob Ward\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 min read\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/\"},\"author\":[{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/author\/bob-ward\/\",\"@type\":\"Person\",\"@name\":\"Bob Ward\"}],\"headline\":\"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL\",\"datePublished\":\"2024-06-26T15:00:00+00:00\",\"dateModified\":\"2024-09-12T15:21:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/\"},\"wordCount\":2361,\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/getting-started-with-delivering.jpg\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/\",\"name\":\"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL - Microsoft SQL Server Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/getting-started-with-delivering.jpg\",\"datePublished\":\"2024-06-26T15:00:00+00:00\",\"dateModified\":\"2024-09-12T15:21:27+00:00\",\"description\":\"Get started with new generative AI experiences on Azure SQL and SQL Server, including Azure SQL Database. Learn more.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#primaryimage\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/getting-started-with-delivering.jpg\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/getting-started-with-delivering.jpg\",\"width\":1280,\"height\":720,\"caption\":\"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#website\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/\",\"name\":\"Microsoft SQL Server Blog\",\"description\":\"Official News from Microsoft\u2019s Information Platform\",\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#organization\",\"name\":\"Microsoft SQL Server Blog\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2019\/08\/Microsoft-Logo.png\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2019\/08\/Microsoft-Logo.png\",\"width\":259,\"height\":194,\"caption\":\"Microsoft SQL Server Blog\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"http:\/\/www.facebook.com\/sqlserver\",\"https:\/\/x.com\/SQLServer\",\"https:\/\/www.youtube.com\/user\/MSCloudOS\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL - Microsoft SQL Server Blog","description":"Get started with new generative AI experiences on Azure SQL and SQL Server, including Azure SQL Database. Learn more.","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.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/","og_locale":"en_US","og_type":"article","og_title":"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL - Microsoft SQL Server Blog","og_description":"Get started with new generative AI experiences on Azure SQL and SQL Server, including Azure SQL Database. Learn more.","og_url":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/","og_site_name":"Microsoft SQL Server Blog","article_publisher":"http:\/\/www.facebook.com\/sqlserver","article_published_time":"2024-06-26T15:00:00+00:00","article_modified_time":"2024-09-12T15:21:27+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/getting-started-with-delivering.jpg","type":"image\/jpeg"}],"author":"Bob Ward","twitter_card":"summary_large_image","twitter_creator":"@SQLServer","twitter_site":"@SQLServer","twitter_misc":{"Written by":"Bob Ward","Est. reading time":"9 min read"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#article","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/"},"author":[{"@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/author\/bob-ward\/","@type":"Person","@name":"Bob Ward"}],"headline":"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL","datePublished":"2024-06-26T15:00:00+00:00","dateModified":"2024-09-12T15:21:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/"},"wordCount":2361,"publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#organization"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/getting-started-with-delivering.jpg","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/","url":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/","name":"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL - Microsoft SQL Server Blog","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#primaryimage"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/getting-started-with-delivering.jpg","datePublished":"2024-06-26T15:00:00+00:00","dateModified":"2024-09-12T15:21:27+00:00","description":"Get started with new generative AI experiences on Azure SQL and SQL Server, including Azure SQL Database. Learn more.","breadcrumb":{"@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#primaryimage","url":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/getting-started-with-delivering.jpg","contentUrl":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2024\/06\/getting-started-with-delivering.jpg","width":1280,"height":720,"caption":"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL"},{"@type":"BreadcrumbList","@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/2024\/06\/26\/getting-started-with-delivering-generative-ai-capabilities-in-sql-server-and-azure-sql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/"},{"@type":"ListItem","position":2,"name":"Getting started with delivering generative AI capabilities in SQL Server and Azure SQL"}]},{"@type":"WebSite","@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#website","url":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/","name":"Microsoft SQL Server Blog","description":"Official News from Microsoft\u2019s Information Platform","publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#organization","name":"Microsoft SQL Server Blog","url":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2019\/08\/Microsoft-Logo.png","contentUrl":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-content\/uploads\/2019\/08\/Microsoft-Logo.png","width":259,"height":194,"caption":"Microsoft SQL Server Blog"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/sqlserver","https:\/\/x.com\/SQLServer","https:\/\/www.youtube.com\/user\/MSCloudOS"]}]}},"msxcm_display_generated_audio":false,"msxcm_animated_featured_image":null,"_links":{"self":[{"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/posts\/50747","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/users\/6191"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/comments?post=50747"}],"version-history":[{"count":0,"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/posts\/50747\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/media\/50776"}],"wp:attachment":[{"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/media?parent=50747"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/post_tag?post=50747"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/product?post=50747"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/content-type?post=50747"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/topic?post=50747"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/sql-server\/blog\/wp-json\/wp\/v2\/coauthors?post=50747"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}