{"id":504,"date":"2019-02-25T13:21:34","date_gmt":"2019-02-25T13:21:34","guid":{"rendered":"https:\/\/shujaahost.co.ke\/blog\/?p=504"},"modified":"2019-02-26T07:03:33","modified_gmt":"2019-02-26T07:03:33","slug":"how-to-run-sql-queries-on-a-database-with-phpmyadmin","status":"publish","type":"post","link":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/","title":{"rendered":"How to run SQL queries on a database with phpMyAdmin"},"content":{"rendered":"\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"829\" height=\"508\" src=\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png\" alt=\"running sql queries on a databse with phpMyAdmin\" class=\"wp-image-520\" srcset=\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png 829w, https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse-300x184.png 300w, https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse-768x471.png 768w, https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse-150x92.png 150w\" sizes=\"auto, (max-width: 829px) 100vw, 829px\" \/><figcaption>How to run SQL QUERIES on a database with phpMyAdmin.<\/figcaption><\/figure>\n\n\n\n<p><strong>Structured Query Language (SQL<\/strong>) is a standardized query language for requesting information from a database. In this tutorial, you&#8217;ll learn how to run SQL queries on a database using <strong>phpMyAdmin<\/strong>. A query helps you create, read, update and delete (<strong>RUN CRUD OPERATIONS<\/strong>) from a <strong>table <\/strong>or <strong>tables<\/strong>.<\/p>\n\n\n\n<p>Read more about SQL <a href=\"https:\/\/en.wikipedia.org\/wiki\/SQL\">here<\/a>.<\/p>\n\n\n\n<p>It is very easy to run SQL queries on a database in phpMyAdmin.<\/p>\n\n\n\n<p>In this tutorial, I assume that you have <a href=\"https:\/\/shujaahost.co.ke\/blog\/how-to-create-a-database-in-cpanel\/\">created a database<\/a>.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>First, <a rel=\"noreferrer noopener\" aria-label=\"log into your cPanel. (opens in a new tab)\" href=\"https:\/\/shujaahost.co.ke\/clientarea\/knowledgebase.php?action=displayarticle&amp;id=4\" target=\"_blank\">log into your cPanel.<\/a><\/li><li>Click on <strong>phpMyAdmin<\/strong> in the <strong>DATABASES <\/strong>section. This will open <strong>phpMyAdmin <\/strong>in a new tab.<\/li><li>From the tabs at the top, click on <strong>SLQ. <\/strong>You can perform simple to complex CRUD operations by typing your queries in the text area provided.<\/li><\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"360\" src=\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/sql-queries-interface-1024x360.png\" alt=\"To run SQL Queries, type your query statement then click on Go to execute.\" class=\"wp-image-518\" srcset=\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/sql-queries-interface-1024x360.png 1024w, https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/sql-queries-interface-300x106.png 300w, https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/sql-queries-interface-768x270.png 768w, https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/sql-queries-interface-150x53.png 150w, https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/sql-queries-interface.png 1049w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption>Type your SQL Query statement then click on Go.<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Run SQL query to insert Data.<\/h2>\n\n\n\n<p>To <strong>insert data<\/strong> using a query in <strong>phpMyAdmin<\/strong>, you&#8217;ll need to write and execute an <strong>INSERT QUERY<\/strong>. Normally an INSERT QUERY will have the syntax below:<\/p>\n\n\n\n<p><strong>INSERT INTO <em>DATABASE_NAME.TABLE_NAME<\/em> (FIELD1, FIELD2) <em>VALUES <\/em>(&#8216;VALUE 1&#8217;, &#8216;VALUE 2&#8217;);<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"> Run SQL query to  select Data<\/h2>\n\n\n\n<p>A simple <strong>SELECT QUERY <\/strong>statment would have the syntax below.<\/p>\n\n\n\n<p><strong>SELECT column1, column2, FROM DATABASE_NAME.TABLE_NAME WHERE column1 = &#8216;value_x&#8217;;<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"> Run SQL query to update data<\/h2>\n\n\n\n<p>A basic update query will have the following syntax:<\/p>\n\n\n\n<p><strong>UPDATE DATABASE_NAME.TABLE_NAME SET column1 = &#8216;value1&#8217;, column2 = &#8216;value2&#8217; WHERE column1 = &#8216;value_x&#8217;;<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"> Run SQL query to delete data<\/h2>\n\n\n\n<p>A simple <strong>DELETE QUERY will look like this:<\/strong><\/p>\n\n\n\n<p>DELETE FROM DATABASE_NAME.TABLE_NAME WHERE column1 = &#8216;value1&#8217;;<\/p>\n\n\n\n<p>Once you have written your query, click on <strong>GO button<\/strong> to execute<strong>.<\/strong><\/p>\n\n\n\n<p>That is how you can write and execut5e SQL QUERIES on a database in phpMyAdmin.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Structured Query Language (SQL) is a standardized query language for requesting information from a database. In this tutorial, you&#8217;ll learn how to run SQL queries on a database using phpMyAdmin. A query helps you create, read, update and delete (RUN CRUD OPERATIONS) from a table or tables. Read more about SQL here. It is very ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-504","post","type-post","status-publish","format-standard","hentry","category-databases"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to run SQL queries on a database with phpMyAdmin - Shujaa Host<\/title>\n<meta name=\"description\" content=\"Structured Query Language (SQL) is a standardized query language for requesting information from a database. Learn how to run SQL QUERIES on a database with phpMyAdmin.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to run SQL queries on a database with phpMyAdmin - Shujaa Host\" \/>\n<meta property=\"og:description\" content=\"Structured Query Language (SQL) is a standardized query language for requesting information from a database. Learn how to run SQL QUERIES on a database with phpMyAdmin - Shujaa Host\" \/>\n<meta property=\"og:url\" content=\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/\" \/>\n<meta property=\"og:site_name\" content=\"Shujaa Host\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/shujaahostKenya\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-25T13:21:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-02-26T07:03:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png\" \/>\n\t<meta property=\"og:image:width\" content=\"829\" \/>\n\t<meta property=\"og:image:height\" content=\"508\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Mike\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:description\" content=\"Structured Query Language (SQL) is a standardized query language for requesting information from a database. Learn how to run SQL QUERIES on a database with phpMyAdmin - Shujaa Host\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png\" \/>\n<meta name=\"twitter:creator\" content=\"@shujaahost_ke\" \/>\n<meta name=\"twitter:site\" content=\"@shujaahost_ke\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mike\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\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:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/\"},\"author\":{\"name\":\"Mike\",\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/#\/schema\/person\/663b69c8fe6b606af1e68eee6f46249f\"},\"headline\":\"How to run SQL queries on a database with phpMyAdmin\",\"datePublished\":\"2019-02-25T13:21:34+00:00\",\"dateModified\":\"2019-02-26T07:03:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/\"},\"wordCount\":307,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png\",\"articleSection\":[\"Databases\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/\",\"url\":\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/\",\"name\":\"How to run SQL queries on a database with phpMyAdmin - Shujaa Host\",\"isPartOf\":{\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png\",\"datePublished\":\"2019-02-25T13:21:34+00:00\",\"dateModified\":\"2019-02-26T07:03:33+00:00\",\"description\":\"Structured Query Language (SQL) is a standardized query language for requesting information from a database. Learn how to run SQL QUERIES on a database with phpMyAdmin.\",\"breadcrumb\":{\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#primaryimage\",\"url\":\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png\",\"contentUrl\":\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png\",\"width\":829,\"height\":508,\"caption\":\"How to run SQL QUERIES on a database with phpMyAdmin.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/shujaahost.co.ke\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to run SQL queries on a database with phpMyAdmin\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/#website\",\"url\":\"https:\/\/shujaahost.co.ke\/blog\/\",\"name\":\"Shujaa Host\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/shujaahost.co.ke\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/#organization\",\"name\":\"Shujaa Host\",\"url\":\"https:\/\/shujaahost.co.ke\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2018\/10\/new-logo3-e1550211460915.png\",\"contentUrl\":\"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2018\/10\/new-logo3-e1550211460915.png\",\"width\":911,\"height\":770,\"caption\":\"Shujaa Host\"},\"image\":{\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/shujaahostKenya\/\",\"https:\/\/x.com\/shujaahost_ke\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/#\/schema\/person\/663b69c8fe6b606af1e68eee6f46249f\",\"name\":\"Mike\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/shujaahost.co.ke\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/179418316e42215939b8f01eb824243c?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/179418316e42215939b8f01eb824243c?s=96&r=g\",\"caption\":\"Mike\"},\"url\":\"https:\/\/shujaahost.co.ke\/blog\/author\/mike\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to run SQL queries on a database with phpMyAdmin - Shujaa Host","description":"Structured Query Language (SQL) is a standardized query language for requesting information from a database. Learn how to run SQL QUERIES on a database with phpMyAdmin.","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:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/","og_locale":"en_US","og_type":"article","og_title":"How to run SQL queries on a database with phpMyAdmin - Shujaa Host","og_description":"Structured Query Language (SQL) is a standardized query language for requesting information from a database. Learn how to run SQL QUERIES on a database with phpMyAdmin - Shujaa Host","og_url":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/","og_site_name":"Shujaa Host","article_publisher":"https:\/\/www.facebook.com\/shujaahostKenya\/","article_published_time":"2019-02-25T13:21:34+00:00","article_modified_time":"2019-02-26T07:03:33+00:00","og_image":[{"width":829,"height":508,"url":"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png","type":"image\/png"}],"author":"Mike","twitter_card":"summary_large_image","twitter_description":"Structured Query Language (SQL) is a standardized query language for requesting information from a database. Learn how to run SQL QUERIES on a database with phpMyAdmin - Shujaa Host","twitter_image":"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png","twitter_creator":"@shujaahost_ke","twitter_site":"@shujaahost_ke","twitter_misc":{"Written by":"Mike","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#article","isPartOf":{"@id":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/"},"author":{"name":"Mike","@id":"https:\/\/shujaahost.co.ke\/blog\/#\/schema\/person\/663b69c8fe6b606af1e68eee6f46249f"},"headline":"How to run SQL queries on a database with phpMyAdmin","datePublished":"2019-02-25T13:21:34+00:00","dateModified":"2019-02-26T07:03:33+00:00","mainEntityOfPage":{"@id":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/"},"wordCount":307,"commentCount":0,"publisher":{"@id":"https:\/\/shujaahost.co.ke\/blog\/#organization"},"image":{"@id":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#primaryimage"},"thumbnailUrl":"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png","articleSection":["Databases"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/","url":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/","name":"How to run SQL queries on a database with phpMyAdmin - Shujaa Host","isPartOf":{"@id":"https:\/\/shujaahost.co.ke\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#primaryimage"},"image":{"@id":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#primaryimage"},"thumbnailUrl":"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png","datePublished":"2019-02-25T13:21:34+00:00","dateModified":"2019-02-26T07:03:33+00:00","description":"Structured Query Language (SQL) is a standardized query language for requesting information from a database. Learn how to run SQL QUERIES on a database with phpMyAdmin.","breadcrumb":{"@id":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#primaryimage","url":"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png","contentUrl":"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2019\/02\/running-sql-queries-on-a-databse.png","width":829,"height":508,"caption":"How to run SQL QUERIES on a database with phpMyAdmin."},{"@type":"BreadcrumbList","@id":"https:\/\/shujaahost.co.ke\/blog\/how-to-run-sql-queries-on-a-database-with-phpmyadmin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/shujaahost.co.ke\/blog\/"},{"@type":"ListItem","position":2,"name":"How to run SQL queries on a database with phpMyAdmin"}]},{"@type":"WebSite","@id":"https:\/\/shujaahost.co.ke\/blog\/#website","url":"https:\/\/shujaahost.co.ke\/blog\/","name":"Shujaa Host","description":"","publisher":{"@id":"https:\/\/shujaahost.co.ke\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/shujaahost.co.ke\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/shujaahost.co.ke\/blog\/#organization","name":"Shujaa Host","url":"https:\/\/shujaahost.co.ke\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/shujaahost.co.ke\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2018\/10\/new-logo3-e1550211460915.png","contentUrl":"https:\/\/shujaahost.co.ke\/blog\/wp-content\/uploads\/2018\/10\/new-logo3-e1550211460915.png","width":911,"height":770,"caption":"Shujaa Host"},"image":{"@id":"https:\/\/shujaahost.co.ke\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/shujaahostKenya\/","https:\/\/x.com\/shujaahost_ke"]},{"@type":"Person","@id":"https:\/\/shujaahost.co.ke\/blog\/#\/schema\/person\/663b69c8fe6b606af1e68eee6f46249f","name":"Mike","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/shujaahost.co.ke\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/179418316e42215939b8f01eb824243c?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/179418316e42215939b8f01eb824243c?s=96&r=g","caption":"Mike"},"url":"https:\/\/shujaahost.co.ke\/blog\/author\/mike\/"}]}},"_links":{"self":[{"href":"https:\/\/shujaahost.co.ke\/blog\/wp-json\/wp\/v2\/posts\/504","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/shujaahost.co.ke\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/shujaahost.co.ke\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/shujaahost.co.ke\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/shujaahost.co.ke\/blog\/wp-json\/wp\/v2\/comments?post=504"}],"version-history":[{"count":11,"href":"https:\/\/shujaahost.co.ke\/blog\/wp-json\/wp\/v2\/posts\/504\/revisions"}],"predecessor-version":[{"id":521,"href":"https:\/\/shujaahost.co.ke\/blog\/wp-json\/wp\/v2\/posts\/504\/revisions\/521"}],"wp:attachment":[{"href":"https:\/\/shujaahost.co.ke\/blog\/wp-json\/wp\/v2\/media?parent=504"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shujaahost.co.ke\/blog\/wp-json\/wp\/v2\/categories?post=504"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shujaahost.co.ke\/blog\/wp-json\/wp\/v2\/tags?post=504"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}