摘要:
并发的基本概念 并发的概念: 指网站在同一时间访问的人数,人数越大,瞬间带宽要求更高。 服务器并发量分为: 1.业务并发用户数;2.最大并发访问数;3.系统用户数;4.同时在线用户数; 估算业务并发量的公式: C=nL/T C^=C+3×(C的平方根) 其中:C是平均的业务并发用户数、n是login 阅读全文
摘要:
第一题: select score from student where course = '语文' and name = '张三'; 第二题: update student set score = 100 where course = '数学' and name = '李四'; 第三题: inse 阅读全文
摘要:
import numpy def func1(m): '''转置的第一种方法''' return numpy.transpose(m).tolist() print(numpy.matrix([[1, 2, 3],[4 ,5, 6],[7, 8,9]])) #转置之前的数据 print(numpy. 阅读全文
该文被密码保护。 阅读全文
摘要:
首先得了解需求,然后可以从这些方面入手: 界面测试、功能测试、兼容性测试、易用性测试、性能测试,最后根据测试用例模版编写测试用例。 1.界面测试 界面布局、排版是否合理;文字是否显示清晰;不同卖家的商品是否区分明显。 2.功能测试 未登录时: 将商品加入购物车,页面跳转到登录页面,登录成功后购物车数 阅读全文
摘要:
查询当天数据 select * from tab where FROM_UNIXTIME(fabutime, '%Y%m%d') = 20121217; mysql TO_DAYS(date) 函数 TO_DAYS(date) 给定一个日期date, 返回一个天数 (从年份0开始的天数 )。 最近一 阅读全文
摘要:
value = input('请输入您的IP地址:') def foo(name): lists = name.split('.') if len(lists) != 4: return '该IP地址不是合法的' for i in range(4): try: tmp = int(lists[i]) 阅读全文
摘要:
def foo(value): dict1 = {} a = 0 num =0 for i in range(len(value)): if value[i] in dict1: num = max(dict1[value[i]],num) a = max(i-num+1, a) dict1[val 阅读全文
摘要:
第一题: update CAR_RECORD set Car_Color = 'yellow' where Car_Num = "浙A12A26"; 第二题: select Rec_type as '违法类型',count(Rec_Type) as '数量' from CAR_DPRECORD gr 阅读全文