{"id":852,"date":"2010-03-26T13:59:13","date_gmt":"2010-03-26T12:59:13","guid":{"rendered":"http:\/\/blog.capdata.fr\/?p=852"},"modified":"2022-12-01T17:54:22","modified_gmt":"2022-12-01T16:54:22","slug":"insert-et-update-en-une-seule-fois-cest-possible-merge","status":"publish","type":"post","link":"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/","title":{"rendered":"Insert et Update en une seule fois avec MERGE"},"content":{"rendered":"<a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-twitter nolightbox\" data-provider=\"twitter\" target=\"_blank\" rel=\"nofollow\" title=\"Share on Twitter\" href=\"https:\/\/twitter.com\/intent\/tweet?url=https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F852&#038;text=Article%20sur%20le%20blog%20de%20la%20Capdata%20Tech%20Team%20%3A%20\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px;margin-right:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"twitter\" title=\"Share on Twitter\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/twitter.png\" \/><\/a><a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-linkedin nolightbox\" data-provider=\"linkedin\" target=\"_blank\" rel=\"nofollow\" title=\"Share on Linkedin\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F852&#038;title=Insert%20et%20Update%20en%20une%20seule%20fois%20avec%20MERGE\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px;margin-right:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"linkedin\" title=\"Share on Linkedin\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/linkedin.png\" \/><\/a><a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-mail nolightbox\" data-provider=\"mail\" rel=\"nofollow\" title=\"Share by email\" href=\"mailto:?subject=Insert%20et%20Update%20en%20une%20seule%20fois%20avec%20MERGE&#038;body=Article%20sur%20le%20blog%20de%20la%20Capdata%20Tech%20Team%20%3A%20:%20https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F852\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"mail\" title=\"Share by email\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/mail.png\" \/><\/a><p>Combien de fois le doute s&#8217;installe : Les lignes existent-elles des 2 cot\u00e9s ? Jusqu&#8217;\u00e0 la version 2005, la m\u00e9thode<br \/>\nconsistait \u00e0 faire un select , puis si la ligne n&#8217;existait pas dans l&#8217;autre table on l&#8217;ins\u00e9rait, sinon on la mettait \u00e0 jour.<br \/>\nDepuis la version 2008, Sql server nous propose de faire tout \u00e7a en une seule passe gr\u00e2ce \u00e0 l&#8217;instruction MERGE.<\/p>\n<pre><span style=\"color: #0000ff;\">CREATE TABLE clients (client_id INT PRIMARY KEY, client_nom VARCHAR(10), client_prenom VARCHAR(10), Date_naissance DATETIME) CREATE TABLE prospects ( prospect_id INT PRIMARY KEY, prospect_nom VARCHAR(10), prospect_prenom<\/span><\/pre>\n<pre><span style=\"color: #0000ff;\">VARCHAR(10), Date_naissance DATETIME)<\/span>\r\n\r\n<span style=\"color: #0000ff;\">INSERT INTO clients VALUES<\/span>\r\n<span style=\"color: #3366ff;\">(1,'Dupont', 'Guy','1988-01-01'), (3,'Durand', 'Nicole','1990-03-10'), (5,'Erie', 'Caroline','1984-11-22'), (7,'Toche', 'vincent','1977-07-07'), (8,'Lagerec', 'Isabelle','1989-05-08') <\/span>\r\n<span style=\"color: #0000ff;\">INSERT INTO prospects VALUES <\/span>\r\n<span style=\"color: #3366ff;\">(1,'Dupont', 'Guy','1977-02-02'),(2,'Kyle', 'Dorine','1981-11-11'), (4,'Ravole', 'Nicolas','1982-02-06'),(5,'Erie', 'Caroline','1984-12-05'), (6,'Kent', 'Cyril','1982-07-15')<\/span>\r\n<span style=\"color: #0000ff;\">MERGE clients USING prospects ON (clients.client_id=prospects.prospect_id) WHEN NOT MATCHED THEN INSERT<\/span><\/pre>\n<pre><span style=\"color: #0000ff;\">values (prospects.prospect_id,prospects.prospect_nom, prospects.prospect_prenom,prospects.Date_naissance) WHEN MATCHED THEN UPDATE SET clients.Date_naissance=prospects.Date_naissance;<\/span><\/pre>\n<p><a href=\"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2010\/03\/merge1.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-865\" title=\"merge\" src=\"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2010\/03\/merge1.jpg\" alt=\"\" width=\"640\" height=\"400\" srcset=\"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2010\/03\/merge1.jpg 640w, https:\/\/blog.capdata.fr\/wp-content\/uploads\/2010\/03\/merge1-300x187.jpg 300w\" sizes=\"auto, (max-width: 640px) 100vw, 640px\" \/><\/a><\/p>\n<p>On retrouve bien les lignes de la table prospects et les lignes de la table clients qui ont \u00e9t\u00e9 modifi\u00e9s.<br \/>\nAu niveau syntaxique, il faut simplement penser au ;<\/p>\n<a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-twitter nolightbox\" data-provider=\"twitter\" target=\"_blank\" rel=\"nofollow\" title=\"Share on Twitter\" href=\"https:\/\/twitter.com\/intent\/tweet?url=https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F852&#038;text=Article%20sur%20le%20blog%20de%20la%20Capdata%20Tech%20Team%20%3A%20\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px;margin-right:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"twitter\" title=\"Share on Twitter\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/twitter.png\" \/><\/a><a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-linkedin nolightbox\" data-provider=\"linkedin\" target=\"_blank\" rel=\"nofollow\" title=\"Share on Linkedin\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F852&#038;title=Insert%20et%20Update%20en%20une%20seule%20fois%20avec%20MERGE\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px;margin-right:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"linkedin\" title=\"Share on Linkedin\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/linkedin.png\" \/><\/a><a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-mail nolightbox\" data-provider=\"mail\" rel=\"nofollow\" title=\"Share by email\" href=\"mailto:?subject=Insert%20et%20Update%20en%20une%20seule%20fois%20avec%20MERGE&#038;body=Article%20sur%20le%20blog%20de%20la%20Capdata%20Tech%20Team%20%3A%20:%20https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F852\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"mail\" title=\"Share by email\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/mail.png\" \/><\/a>","protected":false},"excerpt":{"rendered":"<p>Combien de fois le doute s&#8217;installe : Les lignes existent-elles des 2 cot\u00e9s ? Jusqu&#8217;\u00e0 la version 2005, la m\u00e9thode consistait \u00e0 faire un select , puis si la ligne n&#8217;existait pas dans l&#8217;autre table on l&#8217;ins\u00e9rait, sinon on la&hellip; <a href=\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/\" class=\"more-link\">Continuer la lecture <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":14,"featured_media":864,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[123,125,122,126,124],"class_list":["post-852","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sqlserver","tag-insert","tag-merge","tag-sql","tag-sql-server-2008","tag-update"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Insert et Update en une seule fois avec MERGE - Capdata TECH BLOG<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Insert et Update en une seule fois avec MERGE - Capdata TECH BLOG\" \/>\n<meta property=\"og:description\" content=\"Combien de fois le doute s&#8217;installe : Les lignes existent-elles des 2 cot\u00e9s ? Jusqu&#8217;\u00e0 la version 2005, la m\u00e9thode consistait \u00e0 faire un select , puis si la ligne n&#8217;existait pas dans l&#8217;autre table on l&#8217;ins\u00e9rait, sinon on la&hellip; Continuer la lecture &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/\" \/>\n<meta property=\"og:site_name\" content=\"Capdata TECH BLOG\" \/>\n<meta property=\"article:published_time\" content=\"2010-03-26T12:59:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-01T16:54:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2010\/03\/merge.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Benjamin VESAN\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"Benjamin VESAN\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/\"},\"author\":{\"name\":\"Benjamin VESAN\",\"@id\":\"https:\/\/blog.capdata.fr\/#\/schema\/person\/ae56d1d3d5680d95ccc2c927e44bdc3e\"},\"headline\":\"Insert et Update en une seule fois avec MERGE\",\"datePublished\":\"2010-03-26T12:59:13+00:00\",\"dateModified\":\"2022-12-01T16:54:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/\"},\"wordCount\":96,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/blog.capdata.fr\/#organization\"},\"keywords\":[\"insert\",\"merge\",\"sql\",\"Sql server 2008\",\"update\"],\"articleSection\":[\"SQL Server\"],\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/\",\"url\":\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/\",\"name\":\"Insert et Update en une seule fois avec MERGE - Capdata TECH BLOG\",\"isPartOf\":{\"@id\":\"https:\/\/blog.capdata.fr\/#website\"},\"datePublished\":\"2010-03-26T12:59:13+00:00\",\"dateModified\":\"2022-12-01T16:54:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/blog.capdata.fr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Insert et Update en une seule fois avec MERGE\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.capdata.fr\/#website\",\"url\":\"https:\/\/blog.capdata.fr\/\",\"name\":\"Capdata TECH BLOG\",\"description\":\"Le blog technique sur les bases de donn\u00e9es de CAP DATA Consulting\",\"publisher\":{\"@id\":\"https:\/\/blog.capdata.fr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.capdata.fr\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/blog.capdata.fr\/#organization\",\"name\":\"Capdata TECH BLOG\",\"url\":\"https:\/\/blog.capdata.fr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/blog.capdata.fr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2023\/01\/logo_capdata.webp\",\"contentUrl\":\"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2023\/01\/logo_capdata.webp\",\"width\":800,\"height\":254,\"caption\":\"Capdata TECH BLOG\"},\"image\":{\"@id\":\"https:\/\/blog.capdata.fr\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/cap-data-consulting\/mycompany\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/blog.capdata.fr\/#\/schema\/person\/ae56d1d3d5680d95ccc2c927e44bdc3e\",\"name\":\"Benjamin VESAN\",\"url\":\"https:\/\/blog.capdata.fr\/index.php\/author\/bvesan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Insert et Update en une seule fois avec MERGE - Capdata TECH BLOG","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:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/","og_locale":"fr_FR","og_type":"article","og_title":"Insert et Update en une seule fois avec MERGE - Capdata TECH BLOG","og_description":"Combien de fois le doute s&#8217;installe : Les lignes existent-elles des 2 cot\u00e9s ? Jusqu&#8217;\u00e0 la version 2005, la m\u00e9thode consistait \u00e0 faire un select , puis si la ligne n&#8217;existait pas dans l&#8217;autre table on l&#8217;ins\u00e9rait, sinon on la&hellip; Continuer la lecture &rarr;","og_url":"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/","og_site_name":"Capdata TECH BLOG","article_published_time":"2010-03-26T12:59:13+00:00","article_modified_time":"2022-12-01T16:54:22+00:00","og_image":[{"width":640,"height":400,"url":"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2010\/03\/merge.jpg","type":"image\/jpeg"}],"author":"Benjamin VESAN","twitter_card":"summary_large_image","twitter_misc":{"\u00c9crit par":"Benjamin VESAN","Dur\u00e9e de lecture estim\u00e9e":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/#article","isPartOf":{"@id":"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/"},"author":{"name":"Benjamin VESAN","@id":"https:\/\/blog.capdata.fr\/#\/schema\/person\/ae56d1d3d5680d95ccc2c927e44bdc3e"},"headline":"Insert et Update en une seule fois avec MERGE","datePublished":"2010-03-26T12:59:13+00:00","dateModified":"2022-12-01T16:54:22+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/"},"wordCount":96,"commentCount":3,"publisher":{"@id":"https:\/\/blog.capdata.fr\/#organization"},"keywords":["insert","merge","sql","Sql server 2008","update"],"articleSection":["SQL Server"],"inLanguage":"fr-FR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/","url":"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/","name":"Insert et Update en une seule fois avec MERGE - Capdata TECH BLOG","isPartOf":{"@id":"https:\/\/blog.capdata.fr\/#website"},"datePublished":"2010-03-26T12:59:13+00:00","dateModified":"2022-12-01T16:54:22+00:00","breadcrumb":{"@id":"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/blog.capdata.fr\/index.php\/insert-et-update-en-une-seule-fois-cest-possible-merge\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/blog.capdata.fr\/"},{"@type":"ListItem","position":2,"name":"Insert et Update en une seule fois avec MERGE"}]},{"@type":"WebSite","@id":"https:\/\/blog.capdata.fr\/#website","url":"https:\/\/blog.capdata.fr\/","name":"Capdata TECH BLOG","description":"Le blog technique sur les bases de donn\u00e9es de CAP DATA Consulting","publisher":{"@id":"https:\/\/blog.capdata.fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.capdata.fr\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/blog.capdata.fr\/#organization","name":"Capdata TECH BLOG","url":"https:\/\/blog.capdata.fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/blog.capdata.fr\/#\/schema\/logo\/image\/","url":"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2023\/01\/logo_capdata.webp","contentUrl":"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2023\/01\/logo_capdata.webp","width":800,"height":254,"caption":"Capdata TECH BLOG"},"image":{"@id":"https:\/\/blog.capdata.fr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/cap-data-consulting\/mycompany\/"]},{"@type":"Person","@id":"https:\/\/blog.capdata.fr\/#\/schema\/person\/ae56d1d3d5680d95ccc2c927e44bdc3e","name":"Benjamin VESAN","url":"https:\/\/blog.capdata.fr\/index.php\/author\/bvesan\/"}]}},"_links":{"self":[{"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/posts\/852","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/comments?post=852"}],"version-history":[{"count":25,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/posts\/852\/revisions"}],"predecessor-version":[{"id":9542,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/posts\/852\/revisions\/9542"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/media\/864"}],"wp:attachment":[{"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/media?parent=852"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/categories?post=852"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/tags?post=852"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}