﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>SQLite教程</title>
    <link>https://www.herecours.com//www.herecours.com/list-67-0.html</link>
    <description>Latest 50 infos of SQLite教程</description>
    <copyright>Copyright(C) Empire CMS</copyright>
    <generator>Empire CMS by Empire Studio.</generator>
    <lastBuildDate>Mon, 03 Aug 2026 05:42:21 +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[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[ 数据库表一个数据库通常包含一个或多个表。每个表由一个名字标识（例如:&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[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[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>
    <item>
      <title><![CDATA[SQLite 流程控制函数参考]]></title>
      <description><![CDATA[ 顾名思义，流程控制函数主要用于流程控制。这类似于编程语言中的 if-else 语句，switch 语句。本页整理了 SQLite 中的流程控制函数。                                                                                                              coalesce ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152298.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152298.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:27:16 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite json_valid() 函数使用指南]]></title>
      <description><![CDATA[ SQLite json_valid() 函数返回 0 和 1 来指示给定的参数是否是一个有效的 JSON 文档。json_valid() 语法这里是 SQLite json_valid() 的语法：json_valid(str)参数str必需的。需要被验证的内容。返回值json_valid() 函数验证给定的参数是否是一个有效的 JSON 文档。如果给定的参数可以转为有效的 JSON 文档，jso ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152296.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152296.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:26:16 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite json_type() 函数使用指南]]></title>
      <description><![CDATA[ SQLite json_type() 函数返回一个给定的 JSON 或者 JSON 中指定路径的值的类型。json_type() 语法这里是 SQLite json_type() 的语法：json_type(json_doc)或者json_type(json_doc, path)参数json_doc必需的。一个 JSON 值。返回值json_type() 函数返回一个字符串，它代表了给定的 JSO ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152294.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152294.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:25:15 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite json_tree() 函数使用指南]]></title>
      <description><![CDATA[ SQLite json_tree() 函数递归遍历指定 JSON 文档，为每个子元素生成一行（包括参数本身），最终返回由所有的行组成的结果集。SQLite json_tree() 函数是一个表值函数，类似的函数有： json_each()。json_each() 只遍历 JSON 对象或者数组的直接子元素；而 json_tree() 则递归遍历所有子元素。json_tree() 语法这里是 SQL ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152292.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152292.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:24:15 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[SQLite json_set() 函数使用指南]]></title>
      <description><![CDATA[ SQLite json_set() 函数在一个 JSON 文档中插入或更新数据并返回新的 JSON 文档。json_set() 语法这里是 SQLite json_set() 的语法：json_set(json, path, value, path2, value2 ...)参数json必需的。被修改的 JSON 文档。path必需的。一个有效的路径表达式。value必需的。新的数据。返回值j ]]></description>
      <link>https://www.herecours.com/database/2026/03-25/152290.html</link>
      <guid>https://www.herecours.com/database/2026/03-25/152290.html</guid>
      <category>SQLite教程</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 25 Mar 2026 10:23:14 +0000</pubDate>
    </item>
  </channel>
</rss>