update readme

This commit is contained in:
shuaikangzhou
2023-11-18 14:55:41 +08:00
parent 6ca36b61b1
commit b8704bc59f
2 changed files with 14 additions and 18 deletions

View File

@@ -31,7 +31,7 @@ def get_contact():
lock.acquire(True)
sql = '''select UserName,Alias,Type,Remark,NickName,PYInitial,RemarkPYInitial,ContactHeadImgUrl.smallHeadImgUrl,ContactHeadImgUrl.bigHeadImgUrl
from Contact inner join ContactHeadImgUrl on Contact.UserName = ContactHeadImgUrl.usrName
where Type=3 and Alias is not null
where Type%2=1 and Alias is not null
order by PYInitial
'''
cursor.execute(sql)