How to export in phpmyadmin not include id column (the AUTO_INCREMENT column)(如何在 phpmyadmin 中导出不包含 id 列(AUTO_INCREMENT 列))
问题描述
我的数据库结构是:
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`address` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`tel` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`longitude` int(6) NOT NULL,
`latitude` int(6) NOT NULL,
`type` varchar(1) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
因为我想备份,但我不想在导出到文件 (.sql) 时包含 id
我该怎么办?
As I want to backup, but I don't want to include id when export to file (.sql)
How can I do?
推荐答案
转到 SQL 选项卡并手动编写没有 id
列(SELECT name, address, ... FROMyour_table
).然后,一旦您获得带有结果的表格,向下滚动到页面底部,您将在灰色的查询结果操作"字段集中看到导出图标.这应该对你有用.
Go to SQL tab and manually write your select query without id
column (SELECT name, address, ... FROM your_table
).
Then once you get the table with the results, scroll down to the bottom of the page and you'll see export icon inside the gray "Query results operations" fieldset. This should work for you.
每个请求的屏幕截图(见最底部):
Screenshot per request (see very bottom):
这篇关于如何在 phpmyadmin 中导出不包含 id 列(AUTO_INCREMENT 列)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 phpmyadmin 中导出不包含 id 列(AUTO_INCREMENT 列)
基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01