MySQL备份之根据表备份概述
Posted www.syncnavigator.cn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL备份之根据表备份概述相关的知识,希望对你有一定的参考价值。
以下的文章主要向大家介绍的是MySQL备份之根据表备份,本文主要是以实际应用代码的方式来引出mysql备份之根据表备份,下面就是文章的主要内容描述,希望会给你带来一些帮助在此方面。
- <?php
- function datatosql($table)
- {
- global $db;
- $tabledump = "DROP TABLE IF EXISTS $table; ";
- $createtable = $db->query("SHOW CREATE TABLE $table");
- $create = $db->fetch_array($createtable);
- $tabledump .= $create[1]."; ";
- $rows = $db->query("SELECT * FROM $table");
- $numfields = $db->num_fields($rows);
- $numrows = $db->num_rows($rows);
- while ($row = $db->fetch_array($rows)){
- $comma = "";
- $tabledump .= "INSERT INTO $table VALUES(";
- for($i = 0; $i < $numfields; $i++)
- {
- $tabledump .= $comma."‘".MySQL_escape_string($row[$i])."‘";
- $comma = ",";
- }
- $tabledump .= "); ";
- }
- $tabledump .= " ";
- return $tabledump;
- }
以上的相关内容就是对MySQL备份之-根据表备份的介绍,望你能有所收获。
以上的相关内容就是对MySQL备份之-根据表备份的介绍,望你能有所收获。
以上是关于MySQL备份之根据表备份概述的主要内容,如果未能解决你的问题,请参考以下文章
Linux命令:MySQL系列之十二--MySQL备份与还原(针对单张表SELECT备份)
Linux命令:MySQL系列之十三--MySQL备份与还原(针对单张表SELECT备份)
MySQL之XtraBackup实现完全备份增量备份数据还原