【发布时间】:2017-10-06 13:31:24
【问题描述】:
我正在使用 Python Flask 和 MySQL。我从应用程序获取名称、价格和数量的输入,以便从 MySQL 搜索所有数据。
输出如下:
name | Price | Volume
Screw | 5.0 | 700
iron | null | 67
wood | 23 | null
metal | 76 | 56
plywood| 100 | null
rebar | 75 | 59
steel | null | 87
L steel| 78 | 65
我需要的是,当我选择特定范围的交易量时,我想为交易量排除 null,但为价格包括 null,反之亦然。
场景 1:
选择 60 到 100 之间的交易量,选择所有形式的价格和任何名称。
当前输出为:
name | Price | Volume
iron | null | 67
wood | 23 | null
plywood| 100 | null
steel | null | 87
L steel| 78 | 65
我需要的输出:
name | Price | Volume
iron | null | 67
steel | null | 87
L steel| 78 | 65
场景 2:
选择 50 到 120 之间的价格,选择所有形式的数量和任何名称。
电流输出:
name | Price | Volume
iron | null | 67
metal | 76 | 56
plywood| 100 | null
rebar | 75 | 59
steel | null | 87
L steel| 78 | 65
我需要的输出:
name | Price | Volume
metal | 76 | 56
plywood| 100 | null
rebar | 75 | 59
L steel| 78 | 65
下面是我的代码:
@app.route('/ABC/search1', methods=['GET'])
def ABCsearch1():
name = request.args.get('name',default='',type=str)
priceMin = request.args.get('priceMin',default='',type=str)
priceMax = request.args.get('priceMax',default='',type=str)
volMin = request.args.get('volMin',default='',type=str)
volMax = request.args.get('volMax',default='',type=str)
limit = request.args.get('limit',default=0,type=int)
offSet = request.args.get('offSet',default=0,type=int)
query = """ SELECT * FROM KLSE WHERE (Stock LIKE :s0 or Name LIKE :s1 or Number LIKE :s2)
AND (Price BETWEEN (IF(:s3='_',-5000,:s4)) AND (IF(:s5='_',5000,:s6)) OR Price IS NULL)
AND (Volume BETWEEN (IF(:s7='_',-5000,:s8)) AND (IF(:s9='_',5000,:s10)) OR Volume IS NULL)
LIMIT :s95 OFFSET :s96 """
query = text(query)
input = {'s0':name+"%",'s1':name+"%",'s2':name+"%",'s3':priceMin,'s4':priceMin,'s5':priceMax,'s6':priceMax,'s7':volMin,'s8':volMin,'s9':volMax,'s10':volMax,
's95':limit,'s96':offSet}
try:
call = db.session.execute(query,input)
f = call.fetchall()
col = ['index','Name','Number','Price','id']
f1 = [OrderedDict(zip(col,t)) for t in f]
except Exception:
return 'Error'
return jsonify({'Stock': f1})
【问题讨论】:
标签: python mysql flask flask-sqlalchemy