{"id":16049,"date":"2020-07-14T08:21:50","date_gmt":"2020-07-14T08:21:50","guid":{"rendered":"https:\/\/dbtut.com\/?p=16049"},"modified":"2020-07-14T08:47:42","modified_gmt":"2020-07-14T08:47:42","slug":"partition-in-mysql","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/","title":{"rendered":"Partition in MySQL"},"content":{"rendered":"<p>In the article, the use of partition in MySQL is explained with various examples.<\/p>\n<h3>What is Partition in MySQL?<\/h3>\n<p>We can translate the partition word used in MySQL and advanced DBMS systems as division and separation.<\/p>\n<p>Regardless of the normalization and index structure of the database design, as the data grows, the table will start to slow down after a while.<\/p>\n<p>Partition, and distributed MySQL servers can be used to prevent slowdown.<\/p>\n<p>Using the partition feature, certain parts of the data are physically divided into pieces.<\/p>\n<p>For example; Let&#8217;s say we have 2000 records in the products table with product information. We can divide the table into sections, with the first 1000 records in the first section and the second 1000 records in the second section.<\/p>\n<p>Similarly, we can divide the table by date by years, months and days.<\/p>\n<p>The partition property is used only in columns that contain numeric data or that can be converted into numeric data.<\/p>\n<h3>Partition Types in MySQL<\/h3>\n<p>Partition types consist of four parts: RANGE, LIST, HASH and KEY.<\/p>\n<h4>RANGE Partititon in MySQL<\/h4>\n<p>It is used to partition the column by a certain range.<\/p>\n<h4>How To Create Range Partition in MySQL<\/h4>\n<pre class=\"lang:default decode:true \">CREATE TABLE products (\r\n  product_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\r\n  product_name VARCHAR(255) NOT NULL,\r\n  product_price DECIMAL(10,0) NOT NULL\r\n)\r\nPARTITION BY RANGE(product_id)(\r\n  PARTITION p0 VALUES LESS THAN (1000),\r\n  PARTITION p1 VALUES LESS THAN (2000),\r\n  PARTITION p2 VALUES LESS THAN (3000),\r\n  PARTITION p3 VALUES LESS THAN (4000),\r\n  PARTITION p4 VALUES LESS THAN MAXVALUE\r\n);<\/pre>\n<p>You can access information about the partitions created with the following commands.<\/p>\n<pre class=\"lang:default decode:true \">EXPLAIN PARTITIONS SELECT * FROM products;<\/pre>\n<pre class=\"lang:default decode:true\">SELECT PARTITION_NAME, TABLE_ROWS FROM INFORMATION_SCHEMA.PARTITIONS WHERE TABLE_NAME = 'products';<\/pre>\n<h3>LIST Partition in MySQL<\/h3>\n<p>It is used to divide the column by specific value.<\/p>\n<h4>How To Create List Partition in MySQL<\/h4>\n<pre class=\"lang:default decode:true \">CREATE TABLE products (\r\n  product_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\r\n  product_name VARCHAR(255) NOT NULL,\r\n  product_price DECIMAL(10,0) NOT NULL\r\n)\r\nPARTITION BY LIST(product_id)(\r\n  PARTITION p0 VALUES IN(1, 2, 5),\r\n  PARTITION p1 VALUES IN(3, 4),\r\n  PARTITION p2 VALUES IN(9, 6),\r\n  PARTITION p3 VALUES IN(7, 8)\r\n);<\/pre>\n<p>As a result of the command, in the p0 section, the values of product_id value 1, 2 and 5 will be stored. p1, p2, p3 values will also store the values written in parentheses.<\/p>\n<h3>HASH and KEY Partitions in MySQL<\/h3>\n<p>It performs partitioning according to special algorithmic expression.<\/p>\n<p>If KEY is selected as the partition type, it processes based on the PRIMARY KEY or UNIQUE KEY in the table.<\/p>\n<h4>How To Create HASH and KEY Partitions in MySQL<\/h4>\n<pre class=\"lang:default decode:true \">DROP TABLE IF EXISTS products;\r\nCREATE TABLE IF NOT EXISTS products (\r\n  product_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\r\n  product_name VARCHAR(255) NOT NULL,\r\n  product_price DECIMAL(10,0) NOT NULL\r\n)\r\nPARTITION BY KEY()\r\nPARTITIONS 5;<\/pre>\n<p>If there is no PRIMARY KEY or UNIQUE KEY in the table, it will throw an error.<\/p>\n<p>Similarly, partitioning can be done by selecting PRIMARY KEY or UNIQUE KEY column.<\/p>\n<pre class=\"lang:default decode:true \">DROP TABLE IF EXISTS products;\r\nCREATE TABLE IF NOT EXISTS products (\r\n  product_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\r\n  product_name VARCHAR(255) NOT NULL,\r\n  product_price DECIMAL(10,0) NOT NULL\r\n)\r\nPARTITION BY HASH(product_id)\r\nPARTITIONS 5;<\/pre>\n<p>The HASH partition type is created similar to the KEY partition type.<\/p>\n<p>However, the processes performed in the background are different.<\/p>\n<p>Although partitioning is done, if a good query is not created, there may not be an increase in performance.<\/p>\n<p>You can select partition in query expressions to increase performance.<\/p>\n<p>In the example below, in the p0 section, that is, in the section with the first 1000 records, we query the values with the value of product_id below 250.<\/p>\n<pre class=\"lang:default decode:true \">SELECT * FROM products PARTITION (p0) WHERE product_id &lt; 250;<\/pre>\n<p>Similarly, it will be effective to write the column name that is partitioned as the first search criterion in queries.<\/p>\n<pre class=\"lang:default decode:true \">SELECT * FROM products WHERE product_id &lt; 1000 AND product_name = 'MySQL Books';<\/pre>\n<p>The most appropriate partition type should be selected by performing performance tests after partitioning.<\/p>\n<p>Also, ANALYZE, OPTIMIZE, CHECK, REPAIR are used as optimization commands for partitioning.<\/p>\n<p>I wish you good day.<\/p>\n<p>&nbsp;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_16049\" class=\"pvc_stats all  \" data-element-id=\"16049\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In the article, the use of partition in MySQL is explained with various examples. What is Partition in MySQL? We can translate the partition word used in MySQL and advanced DBMS systems as division and separation. Regardless of the normalization and index structure of the database design, as the data grows, the table will start &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_16049\" class=\"pvc_stats all  \" data-element-id=\"16049\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":485,"featured_media":16050,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[7],"tags":[9764,9765,9762,9761,9763,9760,9759],"class_list":["post-16049","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-mysql","tag-hash-and-key-partitions-in-mysql","tag-how-to-create-hash-and-key-partitions-in-mysql","tag-how-to-create-list-partition-in-mysql","tag-how-to-create-range-partition-in-mysql","tag-list-partition-in-mysql","tag-partition-types-in-mysql","tag-what-is-partition-in-mysql"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Partition in MySQL - Database Tutorials<\/title>\n<meta name=\"description\" content=\"Partition in MySQL\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Partition in MySQL - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"Partition in MySQL\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-14T08:21:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-07-14T08:47:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-3.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"485\" \/>\n\t<meta property=\"og:image:height\" content=\"317\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Yusuf SEZER\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yusuf SEZER\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/\"},\"author\":{\"name\":\"Yusuf SEZER\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a\"},\"headline\":\"Partition in MySQL\",\"datePublished\":\"2020-07-14T08:21:50+00:00\",\"dateModified\":\"2020-07-14T08:47:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/\"},\"wordCount\":465,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-3.jpg\",\"keywords\":[\"HASH and KEY Partitions in MySQL\",\"How To Create HASH and KEY Partitions in MySQL\",\"How To Create List Partition in MySQL\",\"How To Create Range Partition in MySQL\",\"LIST Partition in MySQL\",\"Partition Types in MySQL\",\"What is Partition in MySQL?\"],\"articleSection\":[\"MySQL-MariaDB\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/\",\"name\":\"Partition in MySQL - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-3.jpg\",\"datePublished\":\"2020-07-14T08:21:50+00:00\",\"dateModified\":\"2020-07-14T08:47:42+00:00\",\"description\":\"Partition in MySQL\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-3.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-3.jpg\",\"width\":485,\"height\":317},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Partition in MySQL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a\",\"name\":\"Yusuf SEZER\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g\",\"caption\":\"Yusuf SEZER\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/yusufsezer\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Partition in MySQL - Database Tutorials","description":"Partition in MySQL","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:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/","og_locale":"en_US","og_type":"article","og_title":"Partition in MySQL - Database Tutorials","og_description":"Partition in MySQL","og_url":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/","og_site_name":"Database Tutorials","article_published_time":"2020-07-14T08:21:50+00:00","article_modified_time":"2020-07-14T08:47:42+00:00","og_image":[{"width":485,"height":317,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-3.jpg","type":"image\/jpeg"}],"author":"Yusuf SEZER","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Yusuf SEZER","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/"},"author":{"name":"Yusuf SEZER","@id":"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a"},"headline":"Partition in MySQL","datePublished":"2020-07-14T08:21:50+00:00","dateModified":"2020-07-14T08:47:42+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/"},"wordCount":465,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-3.jpg","keywords":["HASH and KEY Partitions in MySQL","How To Create HASH and KEY Partitions in MySQL","How To Create List Partition in MySQL","How To Create Range Partition in MySQL","LIST Partition in MySQL","Partition Types in MySQL","What is Partition in MySQL?"],"articleSection":["MySQL-MariaDB"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/","url":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/","name":"Partition in MySQL - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-3.jpg","datePublished":"2020-07-14T08:21:50+00:00","dateModified":"2020-07-14T08:47:42+00:00","description":"Partition in MySQL","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-3.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-3.jpg","width":485,"height":317},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/14\/partition-in-mysql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Partition in MySQL"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a","name":"Yusuf SEZER","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g","caption":"Yusuf SEZER"},"url":"https:\/\/dbtut.com\/index.php\/author\/yusufsezer\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/16049","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/485"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=16049"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/16049\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/16050"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=16049"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=16049"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=16049"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}