{"id":9711,"date":"2025-03-09T20:27:18","date_gmt":"2025-03-09T11:27:18","guid":{"rendered":"https:\/\/www.auctionpro.co.kr\/?p=9711"},"modified":"2025-03-09T20:27:18","modified_gmt":"2025-03-09T11:27:18","slug":"mysql-engineinnodb","status":"publish","type":"post","link":"https:\/\/www.auctionpro.co.kr\/?p=9711","title":{"rendered":"mysql ENGINE=InnoDB;"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">ENGINE=InnoDB; \ub780<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">MySQL\uc5d0\uc11c \ud14c\uc774\ube14\uc744 \uc0dd\uc131\ud560 \ub54c \ud574\ub2f9 \ud14c\uc774\ube14\uc5d0 InnoDB \uc800\uc7a5 \uc5d4\uc9c4\uc744 \uc0ac\uc6a9\ud558\ub3c4\ub85d \uc9c0\uc815\ud558\ub294 \uc635\uc158\uc785\ub2c8\ub2e4. InnoDB\ub294 \ub2e4\uc74c\uacfc \uac19\uc740 \uc7a5\uc810\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>\ud2b8\ub79c\uc7ad\uc158 \uc9c0\uc6d0:<\/strong> ACID(\uc6d0\uc790\uc131, \uc77c\uad00\uc131, \uace0\ub9bd\uc131, \uc9c0\uc18d\uc131) \uc900\uc218\ub97c \ud1b5\ud574 \uc548\uc815\uc801\uc778 \ud2b8\ub79c\uc7ad\uc158 \ucc98\ub9ac\uac00 \uac00\ub2a5\ud569\ub2c8\ub2e4.<\/li>\n\n\n\n<li><strong>\uc678\ub798\ud0a4 \uc81c\uc57d \uc870\uac74:<\/strong> \ud14c\uc774\ube14 \uac04\uc758 \uad00\uacc4\ub97c \uc815\uc758\ud558\uace0 \ub370\uc774\ud130 \ubb34\uacb0\uc131\uc744 \uc720\uc9c0\ud560 \uc218 \uc788\ub3c4\ub85d \uc678\ub798\ud0a4\ub97c \uc9c0\uc6d0\ud569\ub2c8\ub2e4.<\/li>\n\n\n\n<li><strong>\ud589 \uc218\uc900 \uc7a0\uae08:<\/strong> \ub370\uc774\ud130 \uc5c5\ub370\uc774\ud2b8 \uc2dc \ud589 \ub2e8\uc704\ub85c \uc7a0\uae08\uc744 \uac78\uc5b4 \ub3d9\uc2dc \ucc98\ub9ac \uc131\ub2a5\uc744 \ud5a5\uc0c1\uc2dc\ud0b5\ub2c8\ub2e4.<\/li>\n\n\n\n<li><strong>\ud06c\ub798\uc2dc \ubcf5\uad6c:<\/strong> \uc2dc\uc2a4\ud15c \uc7a5\uc560 \ubc1c\uc0dd \uc2dc \ub370\uc774\ud130\ub97c \ubcf5\uad6c\ud558\ub294 \uae30\ub2a5\uc774 \ub0b4\uc7a5\ub418\uc5b4 \uc788\uc5b4 \uc548\uc815\uc131\uc744 \ub192\uc5ec\uc90d\ub2c8\ub2e4.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">\ub530\ub77c\uc11c, <code>ENGINE=InnoDB;<\/code> \uc635\uc158\uc744 \uc0ac\uc6a9\ud558\uba74 \uc704\uc640 \uac19\uc740 \uace0\uae09 \uae30\ub2a5\ub4e4\uc744 \ud65c\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:mysql decode:true \" >-- CarManufacturer Table\nCREATE TABLE CarManufacturer (\n    ManufacturerID INT NOT NULL AUTO_INCREMENT,\n    ManufacturerName VARCHAR(255) NOT NULL,\n    Country VARCHAR(100),\n    FoundedYear YEAR,\n    PRIMARY KEY (ManufacturerID)\n) ENGINE=InnoDB;\n\n-- Car Table\nCREATE TABLE Car (\n    CarID INT NOT NULL AUTO_INCREMENT,\n    ModelName VARCHAR(255) NOT NULL,\n    Year YEAR,\n    Price DECIMAL(10,2),\n    ManufacturerID INT NOT NULL,\n    PRIMARY KEY (CarID),\n    FOREIGN KEY (ManufacturerID) REFERENCES CarManufacturer(ManufacturerID)\n        ON DELETE CASCADE\n        ON UPDATE CASCADE\n) ENGINE=InnoDB;\n<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>ENGINE=InnoDB; \ub780 MySQL\uc5d0\uc11c \ud14c\uc774\ube14\uc744 \uc0dd\uc131\ud560 \ub54c \ud574\ub2f9 \ud14c\uc774\ube14\uc5d0 InnoDB \uc800\uc7a5 \uc5d4\uc9c4\uc744 \uc0ac\uc6a9\ud558\ub3c4\ub85d \uc9c0\uc815\ud558\ub294 \uc635\uc158\uc785\ub2c8\ub2e4. InnoDB\ub294 \ub2e4\uc74c\uacfc \uac19\uc740 \uc7a5\uc810\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4: \ub530\ub77c\uc11c, ENGINE=InnoDB; \uc635\uc158\uc744 \uc0ac\uc6a9\ud558\uba74 \uc704\uc640 \uac19\uc740 <a class=\"mh-excerpt-more\" href=\"https:\/\/www.auctionpro.co.kr\/?p=9711\" title=\"mysql ENGINE=InnoDB;\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[88],"tags":[],"class_list":["post-9711","post","type-post","status-publish","format-standard","hentry","category-mysql"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/9711","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=9711"}],"version-history":[{"count":0,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/9711\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=9711"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=9711"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=9711"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}