﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>数据库</title>
    <link>https://www.herecours.com//www.herecours.com/list-64-0.html</link>
    <description>Latest 50 infos of 数据库</description>
    <copyright>Copyright(C) Empire CMS</copyright>
    <generator>Empire CMS by Empire Studio.</generator>
    <lastBuildDate>Mon, 03 Aug 2026 11:20:13 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.herecours.com//www.herecours.com/e/data/images/rss.gif</url>
      <title>帝国网站管理系统</title>
      <link>https://www.herecours.com//www.herecours.com/</link>
    </image>
    <item>
      <title><![CDATA[Oracle大批量数据更新的避坑指南与关键原则]]></title>
      <description><![CDATA[ 前言一、执行范围二、索引三、旧数据/脏数据清理四、更新时长估算五、更新方式1.分批次更新2.分批次事务提交3.分页查询4.暂停更新功能六、更新失败处理1.日志记录2.事务回滚方式七、风险排除1.表空间风险2.索引风险3.内存风险4.日期风险八、数据备份九、数据更新时机十、数据恢复十一、数据验证十二、庆祝一下前言本文旨在 ]]></description>
      <link>https://www.herecours.com/database/2026/04-02/155422.html</link>
      <guid>https://www.herecours.com/database/2026/04-02/155422.html</guid>
      <category>MariaDB教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Thu, 02 Apr 2026 01:11:29 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[Redisbgsave的使用小结]]></title>
      <description><![CDATA[ 什么是bgsave？什么时候会用到bgsave？定期备份数据迁移故障排查与数据分析AOF重写机制主从复制初始化bgsave会存在哪些问题？1. CPU 抢占2. 内存复制3. 磁盘 IO 抢占什么是bgsave？BGSAVE 是 Redis 用于生成 RDB 持久化文件的核心操作，它的本质是：主线程 fork 一个子进程，子进程会独立遍历 Redis 内存数据，将其序列化并写入磁盘（生成.rdb ]]></description>
      <link>https://www.herecours.com/database/2026/04-01/155362.html</link>
      <guid>https://www.herecours.com/database/2026/04-01/155362.html</guid>
      <category>MongoDB教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 01 Apr 2026 03:12:21 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[MySQL中Binlog的完整格式解析(ROW模式，默认)]]></title>
      <description><![CDATA[ 一、MySQL 5.7 Binlog 核心特性二、3 种格式在 5.7 中的表现三、ROW 模式 Binlog 结构（最重要）四、mysqlbinlog 解析命令（5.7 专用）1. 基础解析（能看懂行数据）2. 详细解析（最常用）3. 按时间 / 位置解析五、ROW 格式解析实战（一看就懂）示例 SQL解析后关键内容（精简版字段含义六、三种操作的 Binlog 表现1. INSERT（只有后镜像 ]]></description>
      <link>https://www.herecours.com/database/2026/03-31/155279.html</link>
      <guid>https://www.herecours.com/database/2026/03-31/155279.html</guid>
      <category>MySQL教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Tue, 31 Mar 2026 04:12:21 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLServer中设置日期显示格式的四种方法]]></title>
      <description><![CDATA[ 一、核心函数：CONVERT（兼容所有版本，推荐）1. 最常用的预定义格式（必记）2. 常用格式代码速查表二、灵活自定义：FORMAT 函数（SQL Server 2012+）1. 常用自定义格式示例2. 自定义格式符速查表三、全局格式设置（影响会话 / 服务器）1. 会话级设置（仅当前连接有效）2. 服务器级设置（需管理员权限）四、实战场景示例场景 1：生成分表名（如 DefectResult2 ]]></description>
      <link>https://www.herecours.com/database/2026/03-31/155254.html</link>
      <guid>https://www.herecours.com/database/2026/03-31/155254.html</guid>
      <category>MongoDB教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Tue, 31 Mar 2026 01:11:09 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL 别名]]></title>
      <description><![CDATA[ 通过使用 SQL，可以为表名称或列名称指定别名。SQL 别名通过使用 SQL，可以为表名称或列名称指定别名。基本上，创建别名是为了让列名称的可读性更强。列的 SQL 别名语法SELECT column_name AS alias_nameFROM table_name;表的 SQL 别名语法SELECT column_name(s)FROM table_name AS alias_name;演示数 ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153011.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153011.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:42 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL NULL 值]]></title>
      <description><![CDATA[ NULL 值代表遗漏的未知数据。默认地，表的列可以存放 NULL 值。本章讲解 IS NULL 和 IS NOT NULL 操作符。SQL NULL 值如果表中的某个列是可选的，那么我们可以在不向该列添加值的情况下插入新记录或更新已有的记录。这意味着该字段将以 NULL 值保存。NULL 值的处理方式与其他值不同。NULL 用作未知的或不适用的值的占位符。注释 ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153010.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153010.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:37 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL AUTO INCREMENT]]></title>
      <description><![CDATA[ Auto-increment 会在新记录插入表中时生成一个唯一的数字。AUTO INCREMENT 字段我们通常希望在每次插入新记录时，自动地创建主键字段的值。我们可以在表中创建一个 auto-increment 字段。用于 MySQL 的语法下面的 SQL 语句把 &amp;quot;Persons&amp;quot; 表中的 &amp;quot;ID&amp;quot; 列定义为 auto-increment 主键字段：CREATE TABLE Persons(I ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153009.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153009.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:35 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL 视图]]></title>
      <description><![CDATA[ 视图是可视化的表。本章讲解如何创建、更新和删除视图。SQL CREATE VIEW 语句在 SQL 中，视图是基于 SQL 语句的结果集的可视化的表。视图包含行和列，就像一个真实的表。视图中的字段就是来自一个或多个数据库中的真实的表中的字段。您可以向视图添加 SQL 函数、WHERE 以及 JOIN 语句，也可以呈现数据，就像这些数据来自于某个单一 ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153008.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153008.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:34 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL DELETE]]></title>
      <description><![CDATA[ DELETE 语句用于删除表中的记录。SQL DELETE 语句DELETE 语句用于删除表中的行。SQL DELETE 语法DELETE FROM table_nameWHERE some_column=some_value;请注意 SQL DELETE 语句中的 WHERE 子句！WHERE 子句规定哪条记录或者哪些记录需要删除。如果您省略了 WHERE 子句，所有的记录都将被删除！演示数据库 ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153007.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153007.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:33 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL 约束]]></title>
      <description><![CDATA[ SQL 约束（Constraints）SQL 约束用于规定表中的数据规则。如果存在违反约束的数据行为，行为会被约束终止。约束可以在创建表时规定（通过 CREATE TABLE 语句），或者在表创建之后规定（通过 ALTER TABLE 语句）。SQL CREATE TABLE + CONSTRAINT 语法CREATE TABLE table_name(column_name1 data_type ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153006.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153006.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:32 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL INSERT INTO]]></title>
      <description><![CDATA[ INSERT INTO 语句用于向表中插入新记录。SQL INSERT INTO 语句INSERT INTO 语句用于向表中插入新记录。SQL INSERT INTO 语法INSERT INTO 语句可以有两种编写形式。第一种形式无需指定要插入数据的列名，只需提供被插入的值即可：INSERT INTO table_nameVALUES (value1,value2,value3,...);第二种形 ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153005.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153005.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:30 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL UPDATE]]></title>
      <description><![CDATA[ UPDATE 语句用于更新表中的记录。SQL UPDATE 语句UPDATE 语句用于更新表中已存在的记录。SQL UPDATE 语法UPDATE table_nameSET column1=value1,column2=value2,...WHERE some_column=some_value;请注意 SQL UPDATE 语句中的 WHERE 子句！WHERE 子句规定哪条记录或者哪些记录需 ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153004.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153004.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:29 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL 简介]]></title>
      <description><![CDATA[ SQL 是用于访问和处理数据库的标准的计算机语言。SQL 是什么？SQL，指结构化查询语言，全称是 Structured Query Language。SQL 让您可以访问和处理数据库。SQL 是一种 ANSI（American National Standards Institute 美国国家标准化组织）标准的计算机语言。SQL 能做什么？SQL 面向数据库执行查询SQL 可从数据库取回数据SQ ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153003.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153003.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:26 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL CREATE TABLE]]></title>
      <description><![CDATA[ SQL CREATE TABLE 语句CREATE TABLE 语句用于创建数据库中的表。表由行和列组成，每个表都必须有个表名。SQL CREATE TABLE 语法CREATE TABLE table_name(column_name1 data_type(size),column_name2 data_type(size),column_name3 data_type(size),....); ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153002.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153002.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:11 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL 教程]]></title>
      <description><![CDATA[ SQL 是用于访问和处理数据库的标准的计算机语言。在本教程中，您将学到如何使用 SQL 访问和处理数据系统中的数据，这类数据库包括：MySQL、SQL Server、Access、Oracle、Sybase、DB2 等等。每一章实例每章节都提供了简单的 SQL 简单实例。实例SELECT * FROM Websites;本教程的 SQL 在 MySQL 中测试通过。本教程使用到的 Websites ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153001.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153001.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:09 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[ASP教程 SQL 语法]]></title>
      <description><![CDATA[ 数据库表一个数据库通常包含一个或多个表。每个表由一个名字标识（例如:&amp;quot;Websites&amp;quot;）,表包含带有数据的记录（行）。在本教程中，我们在 MySQL 的 php 数据库中中创建了 Websites 表，由于存储网站记录。我们可以通过以下命令查看 &amp;quot;Websites&amp;quot; 表的数据：mysql&amp;gt; use php;Database changedmysql&amp;gt; set names utf8;Query O ]]></description>
      <link>https://www.herecours.com/database/2026/03-27/153000.html</link>
      <guid>https://www.herecours.com/database/2026/03-27/153000.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 27 Mar 2026 00:00:09 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[MySQL忘记密码的7种自救方案与深度解析]]></title>
      <description><![CDATA[ 一、前言1.1 场景描述1.2 基础知识要求二、5种以上密码重置方案概览三、方案详解3.1 方案一：跳过授权表重置密码（最通用）3.2 方案二：使用init-file脚本重置3.3 方案三：修改配置强制本地登录3.4 方案四：直接修改数据目录中的mysql.user表文件3.5 方案五：通过mysqld_safe指定授权表3.6 方案六：利用其他SUPER权限账号3.7 方案七：MySQL 8. ]]></description>
      <link>https://www.herecours.com/database/2026/03-26/152937.html</link>
      <guid>https://www.herecours.com/database/2026/03-26/152937.html</guid>
      <category>MongoDB教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Thu, 26 Mar 2026 02:14:45 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite typeof() 函数使用指南]]></title>
      <description><![CDATA[ SQLite typeof() 函数返回参数的数据类型，它将返回 null, integer, real, text, 和 blob 这几个字符串中的一个值。typeof() 语法这里是 SQLite typeof() 函数的语法：typeof(x)参数x必需的。它可以是任意类型的数据。返回值SQLite typeof() 函数返回一个表示参数数据类型的字符串，可能值有： null, intege ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152362.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152362.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 11:00:42 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite total_changes() 函数使用指南]]></title>
      <description><![CDATA[ SQLite total_changes() 函数返回从建立当前连接开始的 INSERT, UPDATE, 和 DELETE 语句影响的总行数。total_changes() 语法这里是 SQLite total_changes() 函数的语法：total_changes()参数SQLite total_changes() 函数不需要任何参数。返回值SQLite total_changes() 函 ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152360.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152360.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:59:41 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite sqlite_version() 函数使用指南]]></title>
      <description><![CDATA[ SQLite sqlite_version() 函数返回当前 SQLite 服务器的版本。sqlite_version() 语法这里是 SQLite sqlite_version() 函数的语法：sqlite_version()返回值SQLite sqlite_version() 函数返回一个表示当前 SQLite 服务器的版本的字符串。sqlite_version() 实例本示例展示了 SQLi ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152358.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152358.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:58:40 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite sqlite_source_id() 函数使用指南]]></title>
      <description><![CDATA[ SQLite sqlite_source_id() 函数一个表示用来构建当前 SQLite 库的源码的版本的字符串。 其中包含签入源代码的日期和时间，后跟该签入的 SHA3-256 哈希。sqlite_source_id() 语法这里是 SQLite sqlite_source_id() 函数的语法：sqlite_source_id()返回值SQLite sqlite_source_id() 函数 ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152356.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152356.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:57:39 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite sqlite_compileoption_used() 函数使用指南]]></title>
      <description><![CDATA[ SQLite sqlite_compileoption_used() 函数检查构建 SQLite 时是否用到了指定的编译时选项。sqlite_compileoption_used() 语法这里是 SQLite sqlite_compileoption_used() 函数的语法：sqlite_compileoption_used(x)参数x必需的。一个表示编译时选项的名称。返回值SQLite sql ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152354.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152354.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:56:38 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite sqlite_compileoption_get() 函数使用指南]]></title>
      <description><![CDATA[ SQLite sqlite_compileoption_get() 函数返回用于构建 SQLite 的指定位置的编译时选项。sqlite_compileoption_get() 语法这里是 SQLite sqlite_compileoption_get() 函数的语法：sqlite_compileoption_get(N)参数N必需的。一个从 0 开始的整数。返回值SQLite sqlite_co ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152352.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152352.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:55:38 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite last_insert_rowid() 函数使用指南]]></title>
      <description><![CDATA[ SQLite last_insert_rowid() 函数返回从当前调用此函数的连接中插入到数据库的最后一行的 ROWID。ROWID 是表中的行的唯一标识，它是一个 64 位的整数值。您可以使用不区分大小写的 rowid, oid 或者 _rowid_ 获取到行的 ROWID。除非该表中有显式定义的上述名称的列。如果一个表中有 INTEGER PRIMARY KEY 列，则该列变成 ROWID ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152350.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152350.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:54:37 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite changes() 函数使用指南]]></title>
      <description><![CDATA[ SQLite changes() 函数返回最近完成的一个 INSERT, UPDATE, 或者 DELETE 语句影响的行数。changes() 语法这里是 SQLite changes() 函数的语法：changes()参数SQLite changes() 函数不需要任何参数。返回值SQLite changes() 函数返回一个整数，它是最近完成的一个 INSERT, UPDATE, 或者 DE ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152348.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152348.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:53:36 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite 系统参考]]></title>
      <description><![CDATA[ 本页整理了 SQLite 中的一些系统函数。                                                                                                              changes                                    SQLite changes() 函数返回最近完成 ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152346.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152346.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:52:34 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite total() 函数使用指南]]></title>
      <description><![CDATA[ SQLite total() 函数计算一个分组中的所有指定的值的总和并返回。SQLite total() 函数与 sum() 函数大部分相同，不同的是，total() 总是返回浮点数，而 sum() 则在输入都是整数的时会返回整数。total() 语法这里是 SQLite total() 的语法：total(expr)我们通常在 SQLite 中按如下方式使用 total() 函数：SELECT ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152344.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152344.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:51:33 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite sum() 函数使用指南]]></title>
      <description><![CDATA[ SQLite sum() 函数计算一个分组中的所有指定的值的总和并返回。sum() 语法这里是 SQLite sum() 的语法：sum(expr)我们通常在 SQLite 中按如下方式使用 sum() 函数：SELECT sum(expr), ...FROM table_nameWHERE ...GROUP BY group_expr1, group_expr2, ...;参数expr必 ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152342.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152342.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:50:32 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite min() 函数使用指南]]></title>
      <description><![CDATA[ SQLite min() 函数计算一个分组中的所有指定的值的最小值并返回。min() 语法这里是 SQLite min() 的语法：min(expr)我们通常在 SQLite 中按如下方式使用 min() 函数：SELECT min(expr), ...FROM table_nameWHERE ...GROUP BY group_expr1, group_expr2, ...;参数expr ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152340.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152340.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:49:30 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite max() 函数使用指南]]></title>
      <description><![CDATA[ SQLite max() 函数计算一个分组中的所有指定的值的最大值并返回。max() 语法这里是 SQLite max() 的语法：max(expr)我们通常在 SQLite 中按如下方式使用 max() 函数：SELECT max(expr), ...FROM table_nameWHERE ...GROUP BY group_expr1, group_expr2, ...;参数expr ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152338.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152338.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:48:30 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite group_concat() 函数使用指南]]></title>
      <description><![CDATA[ SQLite group_concat() 函数是一个聚合函数，它返回一个包含了分组中的所有的值的字符串（通过逗号分隔）。group_concat() 语法这里是 SQLite group_concat() 的语法：group_concat(expr)我们通常在 SQLite 中按如下方式使用 group_concat() 函数：SELECT group_concat(expr), ...FROM ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152336.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152336.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:47:29 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite count() 函数使用指南]]></title>
      <description><![CDATA[ SQLite count() 函数统计一个分组中的所有指定的值的数量并返回。count() 语法这里是 SQLite count() 的语法：count(expr)我们通常在 SQLite 中按如下方式使用 count() 函数：SELECT count(expr), ...FROM table_nameWHERE ...GROUP BY group_expr1, group_expr2, ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152335.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152335.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:46:29 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite avg() 函数使用指南]]></title>
      <description><![CDATA[ SQLite avg() 函数计算一个分组中的所有指定的值的平均值并返回。avg() 语法这里是 SQLite avg() 的语法：avg(expr)我们通常在 SQLite 中按如下方式使用 avg() 函数：SELECT avg(expr), ...FROM table_nameWHERE ...GROUP BY group_expr1, group_expr2, ...;参数expr ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152333.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152333.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:45:28 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite 聚合函数参考]]></title>
      <description><![CDATA[ SQLite 聚合函数主要用于数据统计，比如计数、求和、求平均数等。聚合函数结合分组操作，您可以在更多的维度统计数据。                                                                                                              avg ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152331.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152331.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:44:28 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite row_number() 函数使用指南]]></title>
      <description><![CDATA[ SQLite row_number() 函数返回当前行所在的分区内的序号，从 1 开始。row_number() 语法这里是 SQLite row_number() 函数的语法：row_number()OVER (  PARTITION BY partition_column_list  ORDER BY order_column_list)参数partition_column_list参 ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152329.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152329.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:43:27 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite rank() 函数使用指南]]></title>
      <description><![CDATA[ SQLite rank() 函数返回当前行所在的分区内的排名，从 1 开始，但有间隔。也就是说，相同的值具有相同的排名，但是下一个不同的值的排名采用 row_number() 编号。比如，如果有 2 个第一名，那么第三位的排名是 3。这与 dense_rank() 函数是不同的。rank() 语法这里是 SQLite rank() 函数的语法：rank()OVER (  PARTITION BY ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152327.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152327.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:42:26 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite percent_rank() 函数使用指南]]></title>
      <description><![CDATA[ SQLite percent_rank() 函数返回当前行所在的分区内的相对排名，也就是 (rank() - 1) / (分区总行数 - 1)。percent_rank() 语法这里是 SQLite percent_rank() 函数的语法：percent_rank()OVER (  PARTITION BY partition_column_list  ORDER BY order_col ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152325.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152325.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:41:26 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite ntile() 函数使用指南]]></title>
      <description><![CDATA[ SQLite ntile() 函数将当前行所在的分区内的所有行尽可能平均的分成指定数量的区间，并返回当前行所在的区间编号。每个区间， SQLite 称之为一个排名桶。 ntile() 根据指定排序为每个桶指设定排名。ntile() 语法这里是 SQLite ntile() 函数的语法：ntile(buckets)OVER (  PARTITION BY partition_column_list ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152323.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152323.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:40:25 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite nth_value() 函数使用指南]]></title>
      <description><![CDATA[ SQLite nth_value() 函数从当前行关联的窗口框架的指定的一行中返回评估的值。nth_value() 语法这里是 SQLite nth_value() 函数的语法：nth_value(expr, n)OVER (  PARTITION BY partition_column_list  ORDER BY order_column_list)nth_value(expr, 1) ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152321.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152321.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:39:25 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite lead() 函数使用指南]]></title>
      <description><![CDATA[ SQLite lead() 函数返回来自当前行所在的分区内当前行之后的指定行之内的行的值。lead() 语法这里是 SQLite lead() 函数的语法：lead(expr, offset, default)OVER (  PARTITION BY partition_column_list  ORDER BY order_column_list)参数expr必需的。它可以是一个 ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152319.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152319.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:38:24 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite last_value() 函数使用指南]]></title>
      <description><![CDATA[ SQLite last_value() 函数从当前行关联的窗口框架的最后一行中返回评估的值。last_value() 语法这里是 SQLite last_value() 函数的语法：last_value(expr)OVER (  PARTITION BY partition_column_list  ORDER BY order_column_list)参数expr必需的。它可以是一个列名 ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152317.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152317.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:37:24 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite lag() 函数使用指南]]></title>
      <description><![CDATA[ SQLite lag() 函数返回来自当前行所在的分区内当前行之前的指定行之内的值。lag() 语法这里是 SQLite lag() 函数的语法：lag(expr, offset, default)OVER (  PARTITION BY partition_column_list  ORDER BY order_column_list)参数expr必需的。它可以是一个列名或者表达 ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152315.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152315.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:36:23 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite first_value() 函数使用指南]]></title>
      <description><![CDATA[ SQLite first_value() 函数从当前行关联的窗口框架的第一行中返回评估的值。first_value() 语法这里是 SQLite first_value() 函数的语法：first_value(expr)OVER (  PARTITION BY partition_column_list  ORDER BY order_column_list)参数expr必需的。它可以是一 ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152313.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152313.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:35:22 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite dense_rank() 函数使用指南]]></title>
      <description><![CDATA[ SQLite dense_rank() 函数返回当前行所在的分区内的排名，从 1 开始，但没有间隔。也就是说，相同的值具有相同的排名，但是下一个不同的值的排名按顺序增加。比如，如果有 2 个第一名，那么第三位的排名是 2。这与 rank() 函数是不同的。dense_rank() 语法这里是 SQLite dense_rank() 函数的语法：dense_rank()OVER (  PARTIT ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152311.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152311.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:34:21 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite cume_dist() 函数使用指南]]></title>
      <description><![CDATA[ SQLite cume_dist() 函数返回当前行的累积分布，即从第一行到与当前行值相同的最后一行的行数在分区内的总行数中的占比。SQLite cume_dist() 函数常用于显示一个记录集中最高或者最低百分比数量的记录。比如，全国收入的前 10% 的人、此次考试最后 5% 的学生等。cume_dist() 语法这里是 SQLite cume_dist() 函数的语法：cume_dist ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152310.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152310.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:33:21 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite 窗口函数参考]]></title>
      <description><![CDATA[ SQLite 窗口函数提供了跨与当前行关联的分组的计算能力。 窗口函数与聚合函数不同，聚合函数对每个分组进行计算并为每个分组返回一行，而窗口函数不会将每个分组输出到一行，而是将每个分组的计算结果合并到与之关联的行中。窗口函数都依赖于 OVER 子句， OVER 子句可用于行进行分组或组内排序。 窗口函数的调用语法如下：window_func ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152308.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152308.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:32:20 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite nullif() 函数使用指南]]></title>
      <description><![CDATA[ SQLite nullif() 函数根据两个参数是否相等决定返回 NULL 还是第一个参数。如果两个参数相同，返回 NULL，否则返回第一个参数。nullif() 语法这里是 SQLite nullif() 函数的语法：nullif(expr1, expr2)参数expr1必需的。一个值或者表达式。expr2必需的。另一个值或者表达式。返回值如果两个参数相同，即 expr1 = expr2， SQ ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152306.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152306.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:31:19 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite iif() 函数使用指南]]></title>
      <description><![CDATA[ SQLite iif() 函数有 3 个参数，如果第一个参数是真，返回第二个参数，否则返回第三个参数。iif() 语法这里是 SQLite iif() 函数的语法：iif(expr1, expr2, expr3)参数expr1必需的。要检查是否为 TRUE 的值或者表达式。expr2必需的。一个值或者表达式。expr3必需的。另一个值或者表达式。返回值如果 expr1 为真， SQLite iif ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152304.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152304.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:30:19 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite ifnull() 函数使用指南]]></title>
      <description><![CDATA[ SQLite ifnull() 函数是一个 if-else 的函数，如果第一个参数为 NULL，返回第二个参数，否则返回第一个参数。ifnull() 语法这里是 SQLite ifnull() 函数的语法：ifnull(expr1, expr2)SQLite ifnull() 函数等同于两个参数的 coalesce(expr1, expr2) 函数。参数expr1必需的。判断此表达式是否为 NUL ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152302.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152302.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:29:18 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite coalesce() 函数使用指南]]></title>
      <description><![CDATA[ SQLite coalesce() 函数返回参数列表中第一个不是 NULL 的值。coalesce() 语法这里是 SQLite coalesce() 函数的语法：coalesce(value1, value2 ...)参数value1, value2 ...必需的。 参数列表。您至少应该提供一个参数。返回值SQLite coalesce() 函数返回参数列表中第一个不是 NULL 的值。 ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152300.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152300.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:28:18 +0000</pubDate>
    </item>
  </channel>
</rss>