phpMyAdmin 和显示创建表
phpMyAdmin 中是否有一个表的 SHOW CREATE TABLE
快捷方式(即我可以单击一个按钮来获取完整查询,而不是截断的查询)?
另外,我可以在 phpMyAdmin 中同时查询多个 SHOW CREATE TABLE
吗?如果我将它们分开,则只会出现最后一个。
Is there a shortcut in phpMyAdmin to SHOW CREATE TABLE
for a table (i.e. a button I can click to get the full query, not the truncated one)?
Also, can I query multiple SHOW CREATE TABLE
s simultaneously in phpMyAdmin? If I separate them, only the last one appears.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您尝试使用phpmyadmin内的
SHOW CREATE TABLE
查询导出表架构,并且得到一些截断的SQL,那么请按照以下步骤操作输出完整SQL 查询
以复制表结构的步骤。+Options
的超链接,单击该链接将出现一些切换/选项。全文
,在该开关的正下方有一个Go
按钮,可能位于最右侧。If you are trying to export the Table Schema Using the
SHOW CREATE TABLE
Query Inside phpmyadmin, and are getting some truncated SQL then please follow the following steps to output the completeSQL Query
to replicate the table structure.+Options
right above the truncated SQL that you are getting, Clicking on which shall make make a few toggles/options appear.Full Texts
, And right below this toggle there is thisGo
button, maybe on the extreme right.点击数据库>选择您想要的表>选择
选择:显示创建
>完成截图:
< img src="https://i.sstatic.net/WYm5w.png" alt="完成">
Click the database > Select the tables you want > Choose
With selected: Show create
> doneScreenshots:
听起来您想要的是“导出”选项卡结果的全部/部分。
如果你告诉它以 sql 导出,它会为你提供表创建和填充代码(对于数据库中的所有表)
It sounds like what you want is all/part of the result of the 'export' tab.
If you tell it to export in sql, it gives you the table creation and popluation code (for all tables in the database)