if call.data == 'like1':
cur.execute("SELECT userid FROM users WHERE postid=?", (postid,))
exists = cur.fetchall()
if not exists:
print("Удачно : юзера нет\n")
else:
print("Ошибка: юзер есть\n")