03 2020 档案

摘要:from django.shortcuts import render ,HttpResponse,render_to_response,redirectfrom app01 import modelsfrom app01.models import Bookfrom app01.models im 阅读全文
posted @ 2020-03-15 23:23 Stary_tx 阅读(366) 评论(0) 推荐(0) 编辑
摘要:1.分页. select * from tb1 limit 100000000,10; 提高分页的速率: 加上条件:使它跳过 100000000 条 如:将当前页的最后的nid 用全局变量记录(下一页) 将当前页的第一个nid 用全局变量记录(上一页)2.慢日志默认情况下,mysql的慢日志功能是关 阅读全文
posted @ 2020-03-14 12:06 Stary_tx 阅读(157) 评论(0) 推荐(0) 编辑
摘要:一.索引:索引是表的目录,在查找内容之前可以先在目录中查找索引位置,以此快速定位查询数据。对于索引,会保存在额外的文件中 1.1. 创建一个索引: mysql> create index ix_class on tb3(class_id); Query OK, 0 rows affected (0. 阅读全文
posted @ 2020-03-13 22:53 Stary_tx 阅读(240) 评论(0) 推荐(0) 编辑
摘要:mysql内置函数 <1>char_length(...)--计算字符串的长度 eg:select char_length('star') --4 <2>concat('star','comeup','shta')--字符串拼接 eg:select concat('star','comeup','s 阅读全文
posted @ 2020-03-12 21:51 Stary_tx 阅读(270) 评论(0) 推荐(0) 编辑
摘要:1.触发器:对某个表进行(增/删/改)操作的前后如果希望触发某个特定的行为时,可以使用触发器,触发器用于定制用户对表的行进行(增/删/改)前后的行为 -- 触发器-- delimiter $$-- create trigger tr_star before insert on student for 阅读全文
posted @ 2020-03-12 15:52 Stary_tx 阅读(1072) 评论(0) 推荐(0) 编辑
摘要:#_author:来童星#date:2020/3/11#存储过程import pymysqlconn=pymysql.connect(host='127.0.0.1',user='root',passwd='123',db='db1',charset='utf8')cursor=conn.curso 阅读全文
posted @ 2020-03-11 23:36 Stary_tx 阅读(1840) 评论(0) 推荐(0) 编辑
摘要:1.创建用户 create user 'lai'@'localhost' identified by '123';2.修改用户 rename user 'lai'@'localhost' to 'tong'@'localhost';3.删除用户 drop user 'tong'@'localhost 阅读全文
posted @ 2020-03-09 23:26 Stary_tx 阅读(101) 评论(0) 推荐(0) 编辑
摘要:18--查询各科成绩最高和最低分select count(course_id),max(num),min(num) from score group by course_id;19.按各科平均成绩从低到高和及格率的百分数从高到底排序select course_id,avg(num),sum(case 阅读全文
posted @ 2020-03-07 17:38 Stary_tx 阅读(665) 评论(0) 推荐(0) 编辑
摘要:要求:将score表,student表,class表连接起来,并且筛选出其中的sid,student_id,sname,course_id,cname,number SELECT score.sid, score.student_id, student.sname, score.course_id, 阅读全文
posted @ 2020-03-04 13:18 Stary_tx 阅读(170) 评论(0) 推荐(0) 编辑
摘要:<!doctype html><html><head><meta charset="utf-8"><title>company</title><style type="text/css">body,td,th { font-style: normal; font-weight: 100; font- 阅读全文
posted @ 2020-03-04 09:16 Stary_tx 阅读(124) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示