{"id":176446,"date":"2026-02-19T00:25:22","date_gmt":"2026-02-18T23:25:22","guid":{"rendered":"https:\/\/liora.io\/en\/?p=176446"},"modified":"2026-02-19T00:25:23","modified_gmt":"2026-02-18T23:25:23","slug":"insert-into-sql-insert-data-with-this-sql-query","status":"publish","type":"post","link":"https:\/\/liora.io\/en\/insert-into-sql-insert-data-with-this-sql-query","title":{"rendered":"INSERT INTO SQL: Insert data with this SQL query"},"content":{"rendered":"<p><strong>To insert data into your SQL table, you can use the INSERT INTOSQL query. But how does it work? That&#8217;s what we&#8217;re going to look at in this article.<\/strong><\/p>\t\t\n\t\t\t<h2>What is an INSERT INTO SQL request?<\/h2>\t\t\n\t\t<p><strong>INSERT INTO SQL<\/strong> is one of the most commonly used commands in the <a href=\"https:\/\/liora.io\/en\/sql-queries-the-5-most-important-commands-to-know\">SQL language<\/a>. And with good reason: this query allows you to integrate new records into your database. This can be one or more rows, depending on your needs.<\/p><p>Good to know:<strong> INSERT INTO SQL<\/strong> is the command to use for all <a href=\"https:\/\/liora.io\/en\/acid-in-database-management\">database management<\/a> systems. Whether you&#8217;re <a href=\"https:\/\/liora.io\/en\/oracle-the-challenger-rivaling-azure-aws-and-google-cloud\">using Oracle<\/a>, Mysql, Transact-SQL, etc.<\/p>\t\t\n\t\t\t<h2>How do I use the SQL query INSERT INTO?<\/h2><figure class=\"wp-block-image size-large\" style=\"margin-top:var(--wp--preset--spacing--columns);margin-bottom:var(--wp--preset--spacing--columns)\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"572\" src=\"https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-1024x572.jpg\" alt=\"A woman working on a computer in a bright office, with screens displaying training information.\" class=\"wp-image-207382\" srcset=\"https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-56x56.jpg 56w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-115x64.jpg 115w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-150x150.jpg 150w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-210x117.jpg 210w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-300x167.jpg 300w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-410x270.jpg 410w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-440x246.jpg 440w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-448x448.jpg 448w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-587x510.jpg 587w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-768x429.jpg 768w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-785x438.jpg 785w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-1024x572.jpg 1024w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-1250x590.jpg 1250w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-1440x680.jpg 1440w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-1536x857.jpg 1536w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1-2048x1143.jpg 2048w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/work-office-training-center-1.jpg 2560w\" sizes=\"(max-width: 1024px) 100vw, 1024px\"><\/figure>\t\t\n\t\t<p><strong>INSERT INTO SQL<\/strong> can be used to insert one or more rows into your table. But it&#8217;s also possible to use this command in more complex queries. In this article, we&#8217;ll take a look at some of these applications.<\/p>\t\t\n\t\t\t<h3>Insert a line<\/h3>\t\t\n\t\t<p>There are two ways of doing this.<\/p><p><strong>1\u00ba<\/strong> You can insert a line by specifying all the columns. In this case, the syntax is as follows:<\/p><p>INSERT INTO table VALUES (&#8216;value 1&#8217;, &#8216;value 2&#8217;, &#8230;)<\/p><p>If you choose this option, be sure to respect the order of the columns. The database management system interprets SQL queries according to the information you give it. So if you don&#8217;t need to record new values for certain columns, you&#8217;ll need to specify &#8220;NULL&#8221; (instead of value 1,2&#8230;).<\/p><p>The advantage is that you don&#8217;t need to write the name of each limit. This greatly reduces typing errors.<\/p><p><strong>2\u00ba<\/strong> You can specify only those columns for which you wish to integrate new data. To do this, use the following syntax:<\/p><p>INSERT INTO table (column-name_1, column-name_2, &#8230;)<br>VALUES (&#8216;value 1&#8217;, &#8216;value 2&#8217;, &#8230;)<\/p><p>Here, column order is no longer as important. Be careful, however, with the order of values. They must correspond to the columns to which they are assigned.<\/p>\t\t\n\t\t\t<h3>Insert several lines<\/h3>\t\t\n\t\t<p>It is often necessary to insert several lines to enrich your table.<\/p><p>To help you understand, here&#8217;s a concrete example of a Customer file to which you want to add the contact details of several customers.<\/p><p>Here&#8217;s the query:<\/p><p>INSERT INTO customer (first name, last name, city, email)<br>VALUES<br>(&#8216;Justine&#8217;, &#8216;Martin&#8217;, &#8216;Paris&#8217;, &#8216;justinemartin@gmail.com&#8217; ),<br>(&#8216;Thomas&#8217;, &#8216;Durant&#8217;, &#8216;Bordeaux&#8217;, &#8216;tomtom@sfr.fr&#8217;),<br>(&#8216;Marie&#8217;, &#8216;Leroy&#8217;, &#8216;Angers&#8217;, &#8216;marieleroy@laposte.net&#8217;),<br>(&#8216;Vanessa&#8217;, &#8216;Savary&#8217;, &#8216;Marseille&#8217;, &#8216;vanessa13@gmail.com&#8217;)<\/p>\t\t\n\t\t\t\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex is-content-justification-center\"><div class=\"wp-block-button \"><a class=\"wp-block-button__link wp-element-button \" href=\"\/en\/courses\/data-ai\/\">Learn how to use INSERT INTO<\/a><\/div><\/div>\n\n\t\t<p>Use the INSERT INTO command to integrate the following data into your table.<\/p>\t\t\n\t\t\t\n.tg  {border-collapse:collapse;border-spacing:0;}\n.tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;\n  overflow:hidden;padding:10px 5px;word-break:normal;}\n.tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;\n  font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}\n.tg .tg-8806{background-color:#6434fc;border-color:inherit;color:#efefef;text-align:center;vertical-align:top}\n.tg .tg-baqh{text-align:center;vertical-align:top}\n.tg .tg-c3ow{border-color:inherit;text-align:center;vertical-align:top}\n.tg .tg-mw77{background-color:#6434fc;color:#efefef;text-align:center;vertical-align:top}\n\n<table style=\"undefined;width: 500px\">\n<colgroup>\n<col style=\"width: 125px\">\n<col style=\"width: 100px\">\n<col style=\"width: 100px\">\n<col style=\"width: 150px\">\n<\/colgroup>\n<thead>\n  <tr>\n    <th>First Name<\/th>\n    <th>Last Name<\/th>\n    <th>City<\/th>\n    <th>Email<\/th>\n  <\/tr>\n<\/thead>\n<tbody>\n  <tr>\n    <td>Justin<\/td>\n    <td>Martin<\/td>\n    <td>Paris<\/td>\n    <td>justinemartin@gmail.com<\/td>\n  <\/tr>\n  <tr>\n    <td>Thomas <\/td>\n    <td>Durant<\/td>\n    <td>Bordeaux<\/td>\n    <td>tomtom@sfr.fr<\/td>\n  <\/tr>\n  <tr>\n    <td>Marie<\/td>\n    <td>Leroy<\/td>\n    <td>Angers<\/td>\n    <td>marieleroy@laposte.net<\/td>\n  <\/tr>\n  <tr>\n    <td>Vanessa<\/td>\n    <td>Savary<\/td>\n    <td>Marseille<\/td>\n    <td>vanessa13@gmail.com<\/td>\n  <\/tr>\n<\/tbody>\n<\/table>\n\t\t\t<h3>Copy data from another table<\/h3>\t\t\n\t\t<p>By combining several queries, you can also copy data from an A array to a table.<\/p><p>To do this, use the following syntax:<\/p><p>INSERT INTO my_table_1 SELECT column_1,column_2,column_2 FROM my_table_2 WHERE conditions<\/p><p>Let&#8217;s take an example:<\/p><p>You have two tables. The first corresponds to a &#8220;customer&#8221; file:<\/p>\t\t\n\t\t\t\n.tg  {border-collapse:collapse;border-spacing:0;}\n.tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;\n  overflow:hidden;padding:10px 5px;word-break:normal;}\n.tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;\n  font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}\n.tg .tg-8806{background-color:#6434fc;border-color:inherit;color:#efefef;text-align:center;vertical-align:top}\n.tg .tg-baqh{text-align:center;vertical-align:top}\n.tg .tg-c3ow{border-color:inherit;text-align:center;vertical-align:top}\n.tg .tg-mw77{background-color:#6434fc;color:#efefef;text-align:center;vertical-align:top}\n\n<table style=\"undefined;width: 500px\">\n<colgroup>\n<col style=\"width: 125px\">\n<col style=\"width: 100px\">\n<col style=\"width: 100px\">\n<col style=\"width: 150px\">\n<\/colgroup>\n<thead>\n  <tr>\n    <th>Pr\u00e9nom<\/th>\n    <th>Nom<\/th>\n    <th>Ville<\/th>\n    <th>Email<\/th>\n  <\/tr>\n<\/thead>\n<tbody>\n  <tr>\n    <td>Justin<\/td>\n    <td>Martin<\/td>\n    <td>Paris<\/td>\n    <td>justinemartin@gmail.com<\/td>\n  <\/tr>\n  <tr>\n    <td>Thomas <\/td>\n    <td>Durant<\/td>\n    <td>Bordeaux<\/td>\n    <td>tomtom@sfr.fr<\/td>\n  <\/tr>\n  <tr>\n    <td>Marie<\/td>\n    <td>Leroy<\/td>\n    <td>Angers<\/td>\n    <td>marieleroy@laposte.net<\/td>\n  <\/tr>\n  <tr>\n    <td>Vanessa<\/td>\n    <td>Savary<\/td>\n    <td>Marseille<\/td>\n    <td>vanessa13@gmail.com<\/td>\n  <\/tr>\n<\/tbody>\n<\/table>\t\t\n\t\t<p>And the second, to a &#8220;Prospecting&#8221; file:<\/p>\t\t\n\t\t\t\n.tg  {border-collapse:collapse;border-spacing:0;}\n.tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;\n  overflow:hidden;padding:10px 5px;word-break:normal;}\n.tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;\n  font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}\n.tg .tg-8806{background-color:#6434fc;border-color:inherit;color:#efefef;text-align:center;vertical-align:top}\n.tg .tg-baqh{text-align:center;vertical-align:top}\n.tg .tg-c3ow{border-color:inherit;text-align:center;vertical-align:top}\n.tg .tg-mw77{background-color:#6434fc;color:#efefef;text-align:center;vertical-align:top}\n\n<table style=\"undefined;width: 500px\">\n<colgroup>\n<col style=\"width: 125px\">\n<col style=\"width: 100px\">\n<col style=\"width: 100px\">\n<col style=\"width: 150px\">\n<\/colgroup>\n<thead>\n  <tr>\n    <th>First Name<\/th>\n    <th>Last Name<\/th>\n    <th>City<\/th>\n    <th>Email<\/th>\n  <\/tr>\n<\/thead>\n<tbody>\n  <tr>\n    <td>Justin<\/td>\n    <td>Martin<\/td>\n    <td>Paris<\/td>\n    <td>justinemartin@gmail.com<\/td>\n  <\/tr>\n  <tr>\n    <td>Thomas <\/td>\n    <td>Durant<\/td>\n    <td>Bordeaux<\/td>\n    <td>tomtom@sfr.fr<\/td>\n  <\/tr>\n  <tr>\n    <td>Marie<\/td>\n    <td>Leroy<\/td>\n    <td>Angers<\/td>\n    <td>marieleroy@laposte.net<\/td>\n  <\/tr>\n  <tr>\n    <td>Vanessa<\/td>\n    <td>Savary<\/td>\n    <td>Marseille<\/td>\n    <td>vanessa13@gmail.com<\/td>\n  <\/tr>\n<\/tbody>\n<\/table>\n\t\t<p>Having converted a prospect (Jean Bernard), you want to transfer him to your customer file.<\/p><p>Here&#8217;s the query:<\/p><p>INSERT INTO Customer SELECT (first name, last name, city, email) FROM prospect WHERE id = 1<\/p><p>And the result:<\/p>\t\t\n\t\t\t\n.tg  {border-collapse:collapse;border-spacing:0;}\n.tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;\n  overflow:hidden;padding:10px 5px;word-break:normal;}\n.tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;\n  font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}\n.tg .tg-8806{background-color:#6434fc;border-color:inherit;color:#efefef;text-align:center;vertical-align:top}\n.tg .tg-baqh{text-align:center;vertical-align:top}\n.tg .tg-c3ow{border-color:inherit;text-align:center;vertical-align:top}\n\n<table style=\"undefined;width: 500px\">\n<colgroup>\n<col style=\"width: 125px\">\n<col style=\"width: 100px\">\n<col style=\"width: 100px\">\n<col style=\"width: 150px\">\n<\/colgroup>\n<thead>\n  <tr>\n    <th>First Name<\/th>\n    <th>Last Name<\/th>\n    <th>City<\/th>\n    <th>Email<\/th>\n  <\/tr>\n<\/thead>\n<tbody>\n  <tr>\n    <td>Justin<\/td>\n    <td>Martin<\/td>\n    <td>Paris<\/td>\n    <td>justinemartin@gmail.com<\/td>\n  <\/tr>\n  <tr>\n    <td>Thomas <\/td>\n    <td>Durant<\/td>\n    <td>Bordeaux<\/td>\n    <td>tomtom@sfr.fr<\/td>\n  <\/tr>\n  <tr>\n    <td>Marie<\/td>\n    <td>Leroy<\/td>\n    <td>Angers<\/td>\n    <td>marieleroy@laposte.net<\/td>\n  <\/tr>\n  <tr>\n    <td>Vanessa<\/td>\n    <td>Savary<\/td>\n    <td>Marseille<\/td>\n    <td>vanessa13@gmail.com<\/td>\n  <\/tr>\n  <tr>\n    <td>Jean<\/td>\n    <td>Bernard<\/td>\n    <td>Valenciennes<\/td>\n    <td>jbernard@gmail.com<\/td>\n  <\/tr>\n<\/tbody>\n<\/table>\n\t\t\t<h2>Develop your SQL skills with Liora<\/h2><figure class=\"wp-block-image size-large\" style=\"margin-top:var(--wp--preset--spacing--columns);margin-bottom:var(--wp--preset--spacing--columns)\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"572\" src=\"https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-1024x572.jpg\" alt=\"Computer screen displaying programming code in a text editor.\" class=\"wp-image-207320\" srcset=\"https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-56x56.jpg 56w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-115x64.jpg 115w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-150x150.jpg 150w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-210x117.jpg 210w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-300x167.jpg 300w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-410x270.jpg 410w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-440x246.jpg 440w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-448x448.jpg 448w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-587x510.jpg 587w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-768x429.jpg 768w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-785x438.jpg 785w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-1024x572.jpg 1024w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-1250x590.jpg 1250w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-1440x680.jpg 1440w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-1536x857.jpg 1536w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen-2048x1143.jpg 2048w, https:\/\/liora.io\/app\/uploads\/sites\/9\/2026\/02\/programming-code-screen.jpg 2560w\" sizes=\"(max-width: 1024px) 100vw, 1024px\"><\/figure>\t\t\n\t\t<p>Manipulating relational data doesn&#8217;t just mean adding new information. It&#8217;s also possible to delete, modify, update and so on.<\/p><p>For all these actions, there are a multitude of <a href=\"https:\/\/liora.io\/en\/sql-tutorial-top-5-most-useful-methods\">SQL queries<\/a>. If you want to know them all, data training is more than necessary. That&#8217;s why we&#8217;ve developed Liora.<\/p><p>We offer a range of industry-specific training courses to help you<strong> develop your skills.<\/strong><\/p>\t\t\n\t\t\t\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex is-content-justification-center\"><div class=\"wp-block-button \"><a class=\"wp-block-button__link wp-element-button \" href=\"\/en\/courses\/data-ai\/\">Start your SQL training<\/a><\/div><\/div>\n\n\t\t<p><strong>? Related articles:&nbsp;<\/strong><\/p><table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\" data-sheets-root=\"1\"><colgroup><col width=\"656\"><\/colgroup><tbody><tr><td data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;SQL DELETE: How do I use this query?&quot;}\" data-sheets-hyperlink=\"https:\/\/liora.io\/en\/sql-delete-how-do-i-use-this-query\"><a href=\"https:\/\/liora.io\/en\/sql-delete-how-do-i-use-this-query\" target=\"_blank\" rel=\"noopener\">SQL DELETE: How do I use this query?<\/a><\/td><\/tr><tr><td data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;SQL Developer: What is it? What's it for?&quot;}\" data-sheets-hyperlink=\"https:\/\/liora.io\/en\/sql-developer-what-is-it-whats-it-for\"><a href=\"https:\/\/liora.io\/en\/sql-developer-what-is-it-whats-it-for\" target=\"_blank\" rel=\"noopener\">SQL Developer: What is it? What&#8217;s it for?<\/a><\/td><\/tr><tr><td data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;SQL Tutorial: Top 5 Most Useful Methods&quot;}\" data-sheets-hyperlink=\"https:\/\/liora.io\/en\/sql-tutorial-top-5-most-useful-methods\"><a href=\"https:\/\/liora.io\/en\/sql-tutorial-top-5-most-useful-methods\" target=\"_blank\" rel=\"noopener\">SQL Tutorial: Top 5 Most Useful Methods<\/a><\/td><\/tr><tr><td data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;SQL joins: everything you need to know about table associations&quot;}\" data-sheets-hyperlink=\"https:\/\/liora.io\/en\/sql-joins-everything-you-need-to-know-about\"><a href=\"https:\/\/liora.io\/en\/sql-joins-everything-you-need-to-know-about\" target=\"_blank\" rel=\"noopener\">SQL joins: everything you need to know about table associations<\/a><\/td><\/tr><tr><td data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;SQL vs NoSQL: differences, uses, advantages and disadvantages&quot;}\" data-sheets-hyperlink=\"https:\/\/liora.io\/en\/sql-vs-nosql\"><a href=\"https:\/\/liora.io\/en\/sql-vs-nosql\" target=\"_blank\" rel=\"noopener\">SQL vs NoSQL: differences, uses, advantages and disadvantages<\/a><\/td><\/tr><tr><td data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;NoSQL: All about non-relational databases&quot;}\" data-sheets-hyperlink=\"https:\/\/liora.io\/en\/all-about-non-relational-databases\"><a href=\"https:\/\/liora.io\/en\/all-about-non-relational-databases\" target=\"_blank\" rel=\"noopener\">NoSQL: All about non-relational databases<\/a><\/td><\/tr><\/tbody><\/table>","protected":false},"excerpt":{"rendered":"<p>To insert data into your SQL table, you can use the INSERT INTOSQL query. But how does it work? That&#8217;s what we&#8217;re going to look at in this article. What is an INSERT INTO SQL request? INSERT INTO SQL is one of the most commonly used commands in the SQL language. And with good reason: [&hellip;]<\/p>\n","protected":false},"author":76,"featured_media":207384,"comment_status":"open","ping_status":"open","sticky":false,"template":"elementor_theme","format":"standard","meta":{"_acf_changed":false,"editor_notices":[],"footnotes":""},"categories":[2434],"class_list":["post-176446","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud-dev"],"acf":[],"_links":{"self":[{"href":"https:\/\/liora.io\/en\/wp-json\/wp\/v2\/posts\/176446","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/liora.io\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/liora.io\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/liora.io\/en\/wp-json\/wp\/v2\/users\/76"}],"replies":[{"embeddable":true,"href":"https:\/\/liora.io\/en\/wp-json\/wp\/v2\/comments?post=176446"}],"version-history":[{"count":4,"href":"https:\/\/liora.io\/en\/wp-json\/wp\/v2\/posts\/176446\/revisions"}],"predecessor-version":[{"id":207385,"href":"https:\/\/liora.io\/en\/wp-json\/wp\/v2\/posts\/176446\/revisions\/207385"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/liora.io\/en\/wp-json\/wp\/v2\/media\/207384"}],"wp:attachment":[{"href":"https:\/\/liora.io\/en\/wp-json\/wp\/v2\/media?parent=176446"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/liora.io\/en\/wp-json\/wp\/v2\/categories?post=176446"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}