MySQL第三天
发表于:2025-01-22 作者:千家信息网编辑
千家信息网最后更新 2025年01月22日,MySQL第二天关键词:分组聚合自关联物理上一张表,逻辑上是两张表create table areas(id int primary key,atitle varchar(20),pid int,fo
千家信息网最后更新 2025年01月22日MySQL第三天
MySQL第二天
关键词:分组聚合
自关联
物理上一张表,逻辑上是两张表
create table areas(id int primary key,atitle varchar(20),pid int,foreign key(pid) references areas(id));
导入sql文件
source areas.sql;
示例图
示例语句
select sheng.id as sid,sheng.title as stile,shi.id as shiid,shi.title as shititle from areas as shenginner join areas as shi on sheng.id=shi.pidwhere sheng.pid is null and sheng.title='山西省'limit 0,100;
视图
create view stuscore as + 查询语句
事务
四个特性(ACID)
- 原子性(Atomicity):事务不可分割
- 一致性(Consistency):事务间执行顺序不影响结果
- 隔离性(Isolation):不受干扰
- 持久性(Durability):对数据库的更改不丢失
引擎类型:engine=innodb/bdb 支持事务,默认innodb
查看表创建的语句: show create table students;
修改表类型 : alter table students engine=innodb;
事务语句
begin; //开启commit; //提交rollback; // 回滚操作
索引
查看索引
show index from 表名;
创建索引
create index indexName on areas(title(20));
删除索引
drop index [indexName] on 表名;
执行时间
- 开启执行时间监测:
set profiling=1;
- 执行语句
- 显示监测结果 :
show profiles;
Python的数据库操作
每一个python会话都是一次事务
常用类
Connec类
connection = connect(host,port,db,user,passwd,charset)
connection对象的方法
close() 关闭连接commit() 事务提交,所以需要提交才会生效rollback() 事务回滚,放弃之前的操作cursor() 返回Cursor对象,用于执行sql语句并获得结果
Cursor
执行SQL语句
cursor1=connection.cursor() // 调用cursor方法 返回一个cursor对象
cursor对象的常用方法
execute(operation ,[ parameters ]) //执行语句,返回受影响的行数fetchone() //获取查询结果集的第一个行数据,返回一个元组fetchall() //获取查询结果集的所有行,一行构成一个元组,返回一个大元组
增删改查
import MySQLdbtry: connection=MySQLdb.connect(host='localhost',port=3306,db='python3',user='root',passwd='***',charset='utf8') cursor1=connection.cursor() sql='SQL语句增删查改' count=cs1.execute(sql) connection.commit() cursor1.close() connection.close()except Exception,e: print (e.message)
参数化
防止SQL注入
from MySQLdb import *try: name = raw_input('请输入一个名字') connection = connect(host='localhost',port=3306,db='python3',user='root',passwd='***',charset='utf8') #sql = 'insert into students(name) values("小乖巧")' #sql = 'update students set name='乖巧' where id=3' #sql = 'delete from students where id = 3' sql = 'insert into students(name) values(%s)' cursor1.execute(sql,[name]) connection.commit() cursor1.close() connection.close()except Exception,e: print (e.message)
封装
class MYSQL: def __init__(self,host,port=3306,db,user,passwd,charset='uft8'): self.host = host self.port = port self.db = db self.user = user self.passwd = passwd self.charset = charset def open(self): self.connection = connect(host=self.host,port=self.port,db=self.db,user=self.user,passwd=self.passwd,charset=self.charset) self.cursor = self.connection.cursor() def close(self): self.cursor.close() self.connection.close() def curd(self): try: self.open() self.cursor(sql,param) self.commit() self.close() except Exception,e: print(e.message) def all(self,sql,param=[]): try: self.open() self.cursor(sql,param) result = self.cursor.fetchall() self.commit() self.close() return result except Exception,e: print(e.message)
5/13/2018 9:57:42 PM
语句
事务
结果
对象
索引
数据
方法
查询
乖巧
常用
数据库
时间
类型
影响
监测
一致
不可分割
一致性
一行
关键
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
数据库原理试卷简答题
互联网+时代,网络安全生态
万象管理的数据库在哪
订单软件开发需求
数据库的安全性是基于
服务器VD界面指的是什么意思
计算机网络技术海军
北京软件开发集团副总
潍坊市牛企网络技术有限公司
数据库服务器 磁盘需求
哈尔滨网络安全课程
关于网络安全诗歌
有网络安全学院的985
如何清理多个数据库
贷款需要服务器密码安全吗
杭州品廷网络技术有限公司
民生银行软件开发岗位
软件开发计划书2000字
东吴证券软件开发岗位
vb精简版6.0可以数据库
企业网络安全优化方案
湖南统一软件开发价格
惠州通讯软件开发商家
嘉峪关市网络安全平台
怎么看aix服务器有哪些用户
漳平做小程序软件开发定制
服务器网站维护
软件开发年龄限制
北航网络安全学院招生分数线
数据库索引优缺点