-1
SELECT *
FROM functions
WHERE isEnabled=1 AND isPrivate=0
AND user_name=high
AND function_description LIKE '%test%'
#1054 - Unknown column 'isEnabled' in 'where clause'
クエリが間違っていますか?
を持っている、 'isEnabled'という名前の列がありませんあなたのテーブル 'functions'にあります。あなたのクエリの残りの命名規則を見ることは 'is_enabled'と' is_private'を意味する可能性がありますか? – Clive
そして、user_name = highがsuspeciousに見えますが、user_name = 'high'はそれに似ています –
あなたのテーブル定義を投稿します - 'SHOW CREATE TABLE functions'。 –