# 查询表是否存在import sqlite3deftable_exists(conn, table_name):cur = conn.cursor()cur.execute(f"SELECT name FROM sqlite_master WHERE type='table' AND name='{table_name}';")result = cur.fetchone()return result isnotNone# 条件表达式, 判断result是否为None# 连接到SQLite数据库
conn = sqlite3.connect('test.db')# 检查表是否存在if table_exists(conn,'user'):print("表 user 存在")else:print("表 user 不存在")# 关闭连接
conn.close()
MariaDB安装配置、使用、授权、增删改查以及数据库备份与恢复
MariaDB安装配置、使用、授权、增删改查以及数据库备份与恢复_mariadb安装及配置教程-CSDN博客mariadb 恢复:
ERROR! MySQL server PID file could not be found!
170104 23:04:21 InnoDB: The InnoD…
算法复杂度 时间复杂度有关总结 一,常数时间的操作【基本操作】
常数时间——固定时间——O(1)——由实现细节决定
不会随着输入规模的变化而增加时间复杂度
1 基本操作解析
1.算数操作: ab a-b a*b a/b
int a 32位
int b 32位11
178997…