MySQL是一種常用的關系型數據庫管理系統。在MySQL命令行下,我們可以輕松導出表,使得我們可以在其他數據庫或者其他平臺上輕松地使用和編輯我們的數據。
導出表是在MySQL中最常見的操作之一,下面是使用MySQL命令行導出表的方法:
mysqldump -u username -p database_name table_name > filename.sql
其中,username是您的MySQL用戶,database_name是您要導出表的數據庫名,table_name是您要導出的表名,filename.sql是導出文件的名稱。
您需要在命令行下輸入密碼,如果密碼正確,您將會看到類似下面的輸出:
-- MySQL dump 10.13 Distrib 8.0.21, for Win64 (x86_64) -- -- Host: localhost Database: test -- ------------------------------------------------------ -- Server version 8.0.21 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `example_table` -- DROP TABLE IF EXISTS `example_table`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `example_table` ( `id` int(11) NOT NULL, `name` varchar(50) NOT NULL, `description` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `example_table` -- LOCK TABLES `example_table` WRITE; /*!40000 ALTER TABLE `example_table` DISABLE KEYS */; INSERT INTO `example_table` VALUES (1,'John Doe','A description of John Doe'),(2,'Jane Smith','A description of Jane Smith'),(3,'Bob Johnson','A description of Bob Johnson'); /*!40000 ALTER TABLE `example_table` ENABLE KEYS */; UNLOCK TABLES; -- -- Dump completed on 2022-03-24 16:48:15
這就表示您已經成功導出了您的表至filename.sql文件中。