<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>极客┃做最好的游戏行业交流论坛 - MySQL</title>
    <link>https://www.geekpeer.cn/forum-62-1.html</link>
    <description>Latest 20 threads of MySQL</description>
    <copyright>Copyright(C) 极客┃做最好的游戏行业交流论坛</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Thu, 18 Jun 2026 03:49:58 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.geekpeer.cn/static/image/common/logo_88_31.gif</url>
      <title>极客┃做最好的游戏行业交流论坛</title>
      <link>https://www.geekpeer.cn/</link>
    </image>
    <item>
      <title>mysql忘记密码有哪些解决方法</title>
      <link>https://www.geekpeer.cn/thread-61837-1-1.html</link>
      <description><![CDATA[　　我的系统是ubuntu6.06，最近新装好的mysql在进入mysql工具时，总是有错误提示:
　　# mysql -uroot -p
　　Enter password:
　　ERROR 1045 (28000): Access denied for user \'root\'@\'localhost\' (using password: NO)
　　使用网上介绍的方法修改root用户的密码：
 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Wed, 27 Jul 2022 08:27:41 +0000</pubDate>
    </item>
    <item>
      <title>MySQL移植到PostgreSQL过程</title>
      <link>https://www.geekpeer.cn/thread-61836-1-1.html</link>
      <description><![CDATA[　　在北美，人们对于 PostgreSQL 的热情不断升温。随着 PostgreSQL 的发展， PostgreSQL 8.x 已经从技术上超越 MySQL 5.x ，而市场的超越相信只是时间问题。而最终，用户也许有机会享受到可媲美 Oracle 的开源数据库也未尝没有可能。
　　我供职的互联网公司，服务约 5 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Wed, 27 Jul 2022 08:27:10 +0000</pubDate>
    </item>
    <item>
      <title>mysql数据库之INSERT和REPLACE介绍</title>
      <link>https://www.geekpeer.cn/thread-61835-1-1.html</link>
      <description><![CDATA[　　言外之意，就是对数据进行修改。在标准的SQL中有3个语句，它们是INSERT、UPDATE以及DELETE。在MySQL中又多了一个REPLACE语句，因此，本文以MySQL为背景来讨论如何使有SQL中的更新语句。
　　一、INSERT和REPLACE
　　INSERT和REPLACE语句的功能都是向表中插入新的数 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Wed, 27 Jul 2022 08:26:31 +0000</pubDate>
    </item>
    <item>
      <title>超高-防御-游戏服务器的作用</title>
      <link>https://www.geekpeer.cn/thread-61749-1-1.html</link>
      <description><![CDATA[如果游戏玩家规模相对较大，一般来说，普通云服务器的负载会有一定的压力。此时，建议选择独立的游戏服务器。值得一提的是，随着游戏的运行，游戏玩家规模的增长将需要服务器配置的升级，因此有必要选择能够升级的服务器配置。
开服的朋友是不是怕自己辛辛苦苦做的服被 ...]]></description>
      <category>MySQL</category>
      <author>世通333</author>
      <pubDate>Fri, 15 Jul 2022 03:13:04 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 运算符</title>
      <link>https://www.geekpeer.cn/thread-55687-1-1.html</link>
      <description><![CDATA[本章节我们主要介绍 MySQL 的运算符及运算符的优先级。 MySQL 主要有以下几种运算符：
[*]算术运算符
[*]比较运算符
[*]逻辑运算符
[*]位运算符
[hr]算术运算符MySQL 支持的算术运算符包括:在除法运算和模运算中，如果除数为0，将是非法除数，返回结果为NULL。1、加mysq ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:57:30 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 函数</title>
      <link>https://www.geekpeer.cn/thread-55686-1-1.html</link>
      <description><![CDATA[MySQL 有很多内置的函数，以下列出了这些函数的说明。[hr]MySQL 字符串函数[hr]MySQL 数字函数[hr]MySQL 日期函数[hr]MySQL 高级函数]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:56:47 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 导入数据</title>
      <link>https://www.geekpeer.cn/thread-55685-1-1.html</link>
      <description><![CDATA[本章节我们为大家介绍几种简单的 MySQL 导入数据命令。
[hr]1、mysql 命令导入使用 mysql 命令导入语法格式为：mysql -u用户名    -p密码    &lt;  要导入的数据库数据(runoob.sql)实例：# mysql -uroot -p123456 &lt; runoob.sql以上命令将将备份的整个数据库 runoob.sql 导 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:56:15 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 导出数据</title>
      <link>https://www.geekpeer.cn/thread-55684-1-1.html</link>
      <description><![CDATA[MySQL中你可以使用SELECT...INTO OUTFILE语句来简单的导出数据到文本文件上。[hr]使用 SELECT ... INTO OUTFILE 语句导出数据以下实例中我们将数据表 runoob_tbl 数据导出到 /tmp/runoob.txt 文件中:mysql&gt; SELECT * FROM runoob_tbl     -&gt; INTO OUTFILE \'/tmp/runoob. ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:55:56 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 及 SQL 注入</title>
      <link>https://www.geekpeer.cn/thread-55683-1-1.html</link>
      <description><![CDATA[如果您通过网页获取用户输入的数据并将其插入一个MySQL数据库，那么就有可能发生SQL注入安全的问题。本章节将为大家介绍如何防止SQL注入，并通过脚本来过滤SQL中注入的字符。所谓SQL注入，就是通过把SQL命令插入到Web表单递交或输入域名或页面请求的查询字符串，最终达 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:55:38 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 处理重复数据</title>
      <link>https://www.geekpeer.cn/thread-55682-1-1.html</link>
      <description><![CDATA[有些 MySQL 数据表中可能存在重复的记录，有些情况我们允许重复数据的存在，但有时候我们也需要删除这些重复的数据。本章节我们将为大家介绍如何防止数据表出现重复数据及如何删除数据表中的重复数据。[hr]防止表中出现重复数据你可以在 MySQL 数据表中设置指定的字段为 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:55:19 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 序列使用</title>
      <link>https://www.geekpeer.cn/thread-55681-1-1.html</link>
      <description><![CDATA[MySQL 序列是一组整数：1, 2, 3, ...，由于一张数据表只能有一个字段自增主键， 如果你想实现其他字段也实现自动增加，就可以使用MySQL序列来实现。本章我们将介绍如何使用MySQL的序列。[hr]使用 AUTO_INCREMENTMySQL 中最简单使用序列的方法就是使用 MySQL AUTO_INCREM ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:54:57 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 元数据</title>
      <link>https://www.geekpeer.cn/thread-55680-1-1.html</link>
      <description><![CDATA[你可能想知道MySQL以下三种信息：
[*]查询结果信息： SELECT, UPDATE 或 DELETE语句影响的记录数。
[*]数据库和数据表的信息： 包含了数据库及数据表的结构信息。
[*]MySQL服务器信息： 包含了数据库服务器的当前状态，版本号等。
在MySQL的命令提示符中，我们可以很容 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:54:27 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 复制表</title>
      <link>https://www.geekpeer.cn/thread-55679-1-1.html</link>
      <description><![CDATA[如果我们需要完全的复制MySQL的数据表，包括表的结构，索引，默认值等。 如果仅仅使用CREATE TABLE ... SELECT 命令，是无法实现的。本章节将为大家介绍如何完整的复制MySQL数据表，步骤如下：
[*]使用 SHOW CREATE TABLE 命令获取创建数据表(CREATE TABLE) 语句，该语 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:54:07 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 临时表</title>
      <link>https://www.geekpeer.cn/thread-55678-1-1.html</link>
      <description><![CDATA[MySQL 临时表在我们需要保存一些临时数据时是非常有用的。临时表只在当前连接可见，当关闭连接时，Mysql会自动删除表并释放所有空间。临时表在MySQL 3.23版本中添加，如果你的MySQL版本低于 3.23版本就无法使用MySQL的临时表。不过现在一般很少有再使用这么低版本的MySQ ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:53:45 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 索引</title>
      <link>https://www.geekpeer.cn/thread-55677-1-1.html</link>
      <description><![CDATA[MySQL索引的建立对于MySQL的高效运行是很重要的，索引可以大大提高MySQL的检索速度。打个比方，如果合理的设计且使用索引的MySQL是一辆兰博基尼的话，那么没有设计和使用索引的MySQL就是一个人力三轮车。拿汉语字典的目录页（索引）打比方，我们可以按拼音、笔画、偏旁 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:53:25 +0000</pubDate>
    </item>
    <item>
      <title>MySQL ALTER命令</title>
      <link>https://www.geekpeer.cn/thread-55676-1-1.html</link>
      <description><![CDATA[当我们需要修改数据表名或者修改数据表字段时，就需要使用到MySQL ALTER命令。开始本章教程前让我们先创建一张表，表名为：testalter_tbl。root@host# mysql -u root -p password;Enter password:*******mysql&gt; use RUNOOB;Database changedmysql&gt; create table testalt ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:53:03 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 事务</title>
      <link>https://www.geekpeer.cn/thread-55675-1-1.html</link>
      <description><![CDATA[MySQL 事务主要用于处理操作量大，复杂度高的数据。比如说，在人员管理系统中，你删除一个人员，你既需要删除人员的基本资料，也要删除和该人员相关的信息，如信箱，文章等等，这样，这些数据库操作语句就构成一个事务！
[*]在 MySQL 中只有使用了 Innodb 数据库引擎的 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:52:43 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 正则表达式</title>
      <link>https://www.geekpeer.cn/thread-55674-1-1.html</link>
      <description><![CDATA[在前面的章节我们已经了解到MySQL可以通过 LIKE ...% 来进行模糊匹配。MySQL 同样也支持其他正则表达式的匹配， MySQL中使用 REGEXP 操作符来进行正则表达式匹配。如果您了解PHP或Perl，那么操作起来就非常简单，因为MySQL的正则表达式匹配与这些脚本的类似。下表中的正 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:52:22 +0000</pubDate>
    </item>
    <item>
      <title>MySQL NULL 值处理</title>
      <link>https://www.geekpeer.cn/thread-55673-1-1.html</link>
      <description><![CDATA[我们已经知道 MySQL 使用 SQL SELECT 命令及 WHERE 子句来读取数据表中的数据,但是当提供的查询条件字段为 NULL 时，该命令可能就无法正常工作。为了处理这种情况，MySQL提供了三大运算符:
[*]IS NULL: 当列的值是 NULL,此运算符返回 true。
[*]IS NOT NULL: 当列的值不 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:51:58 +0000</pubDate>
    </item>
    <item>
      <title>MySQL 连接的使用</title>
      <link>https://www.geekpeer.cn/thread-55672-1-1.html</link>
      <description><![CDATA[在前几章节中，我们已经学会了如何在一张表中读取数据，这是相对简单的，但是在真正的应用中经常需要从多个数据表中读取数据。本章节我们将向大家介绍如何使用 MySQL 的 JOIN 在两个或多个表中查询数据。你可以在 SELECT, UPDATE 和 DELETE 语句中使用 Mysql 的 JOIN 来 ...]]></description>
      <category>MySQL</category>
      <author>Geekpeer</author>
      <pubDate>Fri, 24 Dec 2021 01:51:34 +0000</pubDate>
    </item>
  </channel>
</rss>