pycharm實現基於mysql關鍵詞檢索問題

2021-10-07 07:43:47 字數 668 閱讀 9243

def

adproquery()

: content = request.form.get(

'ad_prosearch'

)#需要查詢的內容

if content is

none

: content =

"" pros = cy_regist.query.

filter

(or_(cy_regist.user_name.like(

"%"+ content +

"%")

if content is

notnone

else"",

cy_regist.user_title.like(

"%"+ content +

"%")

if content is

notnone

else"")

).all(

)return render_template(

'ad_pro_management.html'

, pros=pros)

不知道該如何解決這個問題,也沒有查到具體相關的解決辦法。

不知道我有沒有表述清楚我的問題~還請各位前輩多多指教!

dns mysql DNSlog實現Mysql注入

step1 通過dnslog盲注需要用到load file 函式。show variables like secure 檢視load file 可以讀取的磁碟。1 當secure file priv為空,就可以讀取磁碟的目錄。2 當secure file priv為g 就可以讀取g盤的檔案。3 當s...

基於mysq欄位選擇的詳解

mysql支援很多字段型別,包括數值型別 日期 時間型別和字串 字元 型別 在使用時需要考慮到儲存空間,儲存效率 幾種列型別描述使用了下述慣例 m表示最大顯示寬度。最大有效顯示寬度是255。d時間型別 datetime 8bytes timestamp 4bytes 字元型別 varchar m l...

python使用peewee實現mysql資料操作

peewee可用class來建立表,增刪改查,應該是相對餘單錶 本人幾乎沒用過,自以為如此 想實現sql查詢,得到list,比如這樣的結果 但是查詢結果是全是資料 元組 且找不到列名,後dir後逐個嘗試發現列名可以使用result.description j 0 獲取 元組使用起來不方便,現實現將資...