{"id":468,"date":"2024-07-07T05:42:35","date_gmt":"2024-07-07T05:42:35","guid":{"rendered":"https:\/\/www.xopsschool.com\/tutorials\/?p=468"},"modified":"2024-07-07T05:53:36","modified_gmt":"2024-07-07T05:53:36","slug":"error-in-mysql-qlstate42s02-base-table-or-view-not-found","status":"publish","type":"post","link":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/","title":{"rendered":"Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"479\" src=\"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image-1024x479.png\" alt=\"\" class=\"wp-image-469\" srcset=\"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image-1024x479.png 1024w, https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image-300x140.png 300w, https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image-768x359.png 768w, https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image-1536x718.png 1536w, https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image.png 1792w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>If you&#8217;re working with MySQL databases, you might have encountered the dreaded SQLSTATE[42S02]: Base table or view not found: 1146 error. This error indicates that the table or view you&#8217;re trying to query does not exist in the database.<\/p>\n\n\n\n<p><strong>The Error Message Explained<br><\/strong>Here&#8217;s a typical error message you might see:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SQLSTATE&#91;42S02]: Base table or view not found: 1146 Table 'name.sessions' doesn't exist (Connection: mysql, SQL: select * from `sessions` where `id` = gE4kncwWwerfdfgrtMd06EcxSw4Cj8tI6kPPFbMI limit 1)<\/code><\/pre>\n\n\n\n<p><strong>Let&#8217;s break this down:<\/strong><\/p>\n\n\n\n<p>SQLSTATE[42S02]: This is the SQLSTATE code indicating the type of error. 42S02 means &#8220;Base table or view not found.&#8221;<br>Base table or view not found: 1146: Error code 1146 is specific to MySQL and means that the table or view you&#8217;re trying to query does not exist.<br>Table &#8216;majesticmonarch.sessions&#8217; doesn&#8217;t exist: The specific table that cannot be found is sessions in the majesticmonarch database.<br>Connection: mysql: Indicates the database connection being used.<br>SQL: select * from &#8216;sessions&#8217; where &#8216;id&#8217; = gE4kncwWJXKfpdKBaMd06EcxSw4Cj8tI6kPPFbMI limit 1: The SQL query that triggered the error.<br>Common Causes<br>Table Doesn&#8217;t Exist: The most straightforward reason is that the table sessions does not exist in the majesticmonarch database.<br>Incorrect Database: The query might be pointing to the wrong database.<br>Typographical Errors: There might be a typo in the table name.<br>Migration Issues: If you are using a framework like Laravel, there could be an issue with your database migrations.<br>How to Resolve the Error<br>Verify the Database Name<br>Make sure you&#8217;re connected to the correct database. Run the following SQL command to list all tables in the current database:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SHOW TABLES;\r\n<\/code><\/pre>\n\n\n\n<p>If the sessions table is not listed, you are either in the wrong database or the table does not exist.<\/p>\n\n\n\n<p>Check for Typographical Errors<br>Ensure there are no typos in your query or configuration files. The table name in the query must exactly match the table name in the database.<\/p>\n\n\n\n<p>Create the Missing Table<br>If the sessions table is missing, you need to create it. Here is an example schema for a typical sessions table:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE TABLE `sessions` (\r\n    `id` VARCHAR(255) NOT NULL,\r\n    `user_id` INT,\r\n    `ip_address` VARCHAR(45),\r\n    `user_agent` TEXT,\r\n    `payload` TEXT NOT NULL,\r\n    `last_activity` INT NOT NULL,\r\n    PRIMARY KEY (`id`)\r\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\r\n<\/code><\/pre>\n\n\n\n<p>Adjust the schema to fit your application&#8217;s requirements.<\/p>\n\n\n\n<p>Run Migrations (for Frameworks like Laravel)<br>If you are using a framework, ensure all migrations have been executed. In Laravel, you can run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php artisan migrate\r\n<\/code><\/pre>\n\n\n\n<p>This command will run all pending migrations and create any missing tables.<\/p>\n\n\n\n<p>Verify Database Connection Configuration<br>Ensure your database connection settings are correct. For Laravel, check the .env file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\r\n\r\nDB_CONNECTION=mysql\r\nDB_HOST=127.0.0.1\r\nDB_PORT=3306\r\nDB_DATABASE=name\nDB_USERNAME=your_username\r\nDB_PASSWORD=your_password<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re working with MySQL databases, you might have encountered the dreaded SQLSTATE[42S02]: Base table or view not found: 1146 error. This error indicates that the table or view you&#8217;re trying to query does not exist in the database. The Error Message ExplainedHere&#8217;s a typical error message you might see: Let&#8217;s break this down: SQLSTATE[42S02]: &#8230; <a title=\"Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found\" class=\"read-more\" href=\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/\" aria-label=\"Read more about Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found\">Read more<\/a><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[298],"tags":[368,360,364,363,356,366,369,359,355,370,371,361,354,353,365,262,367,362,357,358],"class_list":["post-468","post","type-post","status-publish","format-standard","hentry","category-mysql","tag-backend-development-mysql-tips","tag-database-configuration","tag-database-connectivity","tag-database-debugging-php-mysql-integration","tag-database-errors-sqlstate-codes","tag-database-issues","tag-database-maintenance-database-schema","tag-database-management-sql-troubleshooting","tag-database-migrations","tag-database-optimization","tag-database-setup-mysql-administration","tag-laravel-troubleshooting-mysql-table-creation","tag-mysql-error-1146","tag-mysql-errors","tag-php-database-errors-web-development","tag-sql-best-practices","tag-sql-commands","tag-sql-queries","tag-table-not-found-laravel-migrations","tag-troubleshooting-mysql"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found - XOps Tutorials!!!<\/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:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found - XOps Tutorials!!!\" \/>\n<meta property=\"og:description\" content=\"If you&#8217;re working with MySQL databases, you might have encountered the dreaded SQLSTATE[42S02]: Base table or view not found: 1146 error. This error indicates that the table or view you&#8217;re trying to query does not exist in the database. The Error Message ExplainedHere&#8217;s a typical error message you might see: Let&#8217;s break this down: SQLSTATE[42S02]: ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/\" \/>\n<meta property=\"og:site_name\" content=\"XOps Tutorials!!!\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-07T05:42:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-07T05:53:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image-1024x479.png\" \/>\n<meta name=\"author\" content=\"Avinash Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Avinash Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/\"},\"author\":{\"name\":\"Avinash Kumar\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/fa5aa374a3698a6b72f0a260e0bda0b8\"},\"headline\":\"Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found\",\"datePublished\":\"2024-07-07T05:42:35+00:00\",\"dateModified\":\"2024-07-07T05:53:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/\"},\"wordCount\":388,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image-1024x479.png\",\"keywords\":[\"backend development MySQL tips\",\"database configuration\",\"database connectivity\",\"database debugging PHP MySQL integration\",\"database errors SQLSTATE codes\",\"database issues\",\"database maintenance database schema\",\"database management SQL troubleshooting\",\"database migrations\",\"database optimization\",\"database setup MySQL administration\",\"Laravel troubleshooting MySQL table creation\",\"MySQL error 1146\",\"MySQL errors\",\"PHP database errors web development\",\"SQL Best Practices\",\"SQL commands\",\"SQL queries\",\"table not found Laravel migrations\",\"troubleshooting MySQL\"],\"articleSection\":[\"Mysql\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/\",\"url\":\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/\",\"name\":\"Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found - XOps Tutorials!!!\",\"isPartOf\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image-1024x479.png\",\"datePublished\":\"2024-07-07T05:42:35+00:00\",\"dateModified\":\"2024-07-07T05:53:36+00:00\",\"author\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/fa5aa374a3698a6b72f0a260e0bda0b8\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#primaryimage\",\"url\":\"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image.png\",\"contentUrl\":\"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image.png\",\"width\":1792,\"height\":838},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.xopsschool.com\/tutorials\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#website\",\"url\":\"https:\/\/www.xopsschool.com\/tutorials\/\",\"name\":\"XOps Tutorials!!!\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.xopsschool.com\/tutorials\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/fa5aa374a3698a6b72f0a260e0bda0b8\",\"name\":\"Avinash Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/db01f522798b98f8f474a1dfdd200df1c0e7ada232088d7a8192e14919e4de0a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/db01f522798b98f8f474a1dfdd200df1c0e7ada232088d7a8192e14919e4de0a?s=96&d=mm&r=g\",\"caption\":\"Avinash Kumar\"},\"url\":\"https:\/\/www.xopsschool.com\/tutorials\/author\/avinash\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found - XOps Tutorials!!!","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.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/","og_locale":"en_US","og_type":"article","og_title":"Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found - XOps Tutorials!!!","og_description":"If you&#8217;re working with MySQL databases, you might have encountered the dreaded SQLSTATE[42S02]: Base table or view not found: 1146 error. This error indicates that the table or view you&#8217;re trying to query does not exist in the database. The Error Message ExplainedHere&#8217;s a typical error message you might see: Let&#8217;s break this down: SQLSTATE[42S02]: ... Read more","og_url":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/","og_site_name":"XOps Tutorials!!!","article_published_time":"2024-07-07T05:42:35+00:00","article_modified_time":"2024-07-07T05:53:36+00:00","og_image":[{"url":"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image-1024x479.png","type":"","width":"","height":""}],"author":"Avinash Kumar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Avinash Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#article","isPartOf":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/"},"author":{"name":"Avinash Kumar","@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/fa5aa374a3698a6b72f0a260e0bda0b8"},"headline":"Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found","datePublished":"2024-07-07T05:42:35+00:00","dateModified":"2024-07-07T05:53:36+00:00","mainEntityOfPage":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/"},"wordCount":388,"commentCount":0,"image":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#primaryimage"},"thumbnailUrl":"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image-1024x479.png","keywords":["backend development MySQL tips","database configuration","database connectivity","database debugging PHP MySQL integration","database errors SQLSTATE codes","database issues","database maintenance database schema","database management SQL troubleshooting","database migrations","database optimization","database setup MySQL administration","Laravel troubleshooting MySQL table creation","MySQL error 1146","MySQL errors","PHP database errors web development","SQL Best Practices","SQL commands","SQL queries","table not found Laravel migrations","troubleshooting MySQL"],"articleSection":["Mysql"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/","url":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/","name":"Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found - XOps Tutorials!!!","isPartOf":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#primaryimage"},"image":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#primaryimage"},"thumbnailUrl":"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image-1024x479.png","datePublished":"2024-07-07T05:42:35+00:00","dateModified":"2024-07-07T05:53:36+00:00","author":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/fa5aa374a3698a6b72f0a260e0bda0b8"},"breadcrumb":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#primaryimage","url":"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image.png","contentUrl":"https:\/\/www.xopsschool.com\/tutorials\/wp-content\/uploads\/2024\/07\/image.png","width":1792,"height":838},{"@type":"BreadcrumbList","@id":"https:\/\/www.xopsschool.com\/tutorials\/error-in-mysql-qlstate42s02-base-table-or-view-not-found\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.xopsschool.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"Error in MySQL: SQLSTATE[42S02]: Base Table or View Not Found"}]},{"@type":"WebSite","@id":"https:\/\/www.xopsschool.com\/tutorials\/#website","url":"https:\/\/www.xopsschool.com\/tutorials\/","name":"XOps Tutorials!!!","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.xopsschool.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/fa5aa374a3698a6b72f0a260e0bda0b8","name":"Avinash Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/db01f522798b98f8f474a1dfdd200df1c0e7ada232088d7a8192e14919e4de0a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/db01f522798b98f8f474a1dfdd200df1c0e7ada232088d7a8192e14919e4de0a?s=96&d=mm&r=g","caption":"Avinash Kumar"},"url":"https:\/\/www.xopsschool.com\/tutorials\/author\/avinash\/"}]}},"_links":{"self":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts\/468","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/comments?post=468"}],"version-history":[{"count":2,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts\/468\/revisions"}],"predecessor-version":[{"id":471,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts\/468\/revisions\/471"}],"wp:attachment":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/media?parent=468"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/categories?post=468"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/tags?post=468"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}