摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using Npgsql; using System.Configuration; using System.Data; name 阅读全文
摘要:
资料: 一:PG数据库资料: 菜鸟教程: https://www.runoob.com/postgresql/postgresql-index.html 官方PG数据库文档翻译 http://www.postgres.cn/docs/12/index.html 二:项目中引用的数据库驱动 githu 阅读全文
摘要:
介绍: 加速搜索引擎检索数据的一种特殊表结构,一个数据库的索引与一本书的索引目录非常相似。 作用: 索引有助于加快select查询和where子句,但是它会减慢使用update和insert语句时的操作。索引可以创建和删除,但是不影响数据。 假设我们有一个类似这样的表: CREATE TABLE t 阅读全文