健康歌曲

文章
5
资源
1
加入时间
3年0月8天

mysql查询优化not in_MYSQL查询,优化LIKE和NOT IN

我有一个需要运行的查询,目前运行速度非常慢。我正在使用的表格有近100万条记录。我需要做的是搜索带有LIKE名称的项目:示例"SELECT name, other, stuff FROM my_table WHERE name LIKE '%some_name%'"此外,它必须能够从搜索结果中排除某些带有通配符的术语,以便它变成如下所示:SELECT name, other, stuffFROM ...

python操作sqlite3基本操作

import sqlite3con = sqlite3.connect('./db/user.db')cur = con.cursor()sql = 'create table if not exists user(id integer primary key, name text, age integer)'cur.execute(sql)# 插入一条 or 多条def create_user(): # insert # cur.execute('insert into