12 2019 档案
摘要:3.1 user(),database();now(); 3.2 select 字段名 from 表名 3.3 distinct 去重 3.4 concat 拼接 3.5 concat语句 3.6 group by(分组,去重) 有一个需要注意: 3.7 having过滤条件 3.8 聚合函数 3.
阅读全文
摘要:python基础 函数 模块 面向对象 数据库
阅读全文
摘要:1.flask和django的区别? django好还是flask好? 2.快速入门 2.1 werkzurg werkzurg是一个wsgi,本质上提供了socket服务端,用于接收用户请求. django和flask一样,它们内部都没有实现socket服务端,需要依赖wsgi. django,
阅读全文
摘要:def discount_price(self,price=None): """折扣后的价格""" if price is None: # 如果没有传递参数,则默认采用当前原价 price = self.price price = float(price) # 默认获取到的数据时Decimal类型的
阅读全文