I'm trying to create a contact book as a personal project. In the 'find_contact()' function, when I use the 'emaiL' variable to perform a query, it error message says that the data (I pre-recorded in the table) doesn't exist. But when I changed the variable to be used to query to 'phoneNum' (which is a number in text form) the query worked. How do I go about this please?
import sqlite3
conn = sqlite3.connect('contactBook.db')
cur = conn.cursor()
records = cur.fetchall()
#create table
cur.execute("""CREATE TABLE IF NOT EXISTS contacts (
        first_name TEXT NOT NULL,
        last_name TEXT,
        phone_number TEXT NOT NULL PRIMARY KEY,
        email,
        address TEXT,
        UNIQUE(phone_number, email)
     )""")
 #conn.close()
def save_contact():
     save_contact.firstName = input("First name of contact: ")
     lastName = input("Last name of contact: ")
     phoneNumber = input("Phone number of contact: ")
     email_ = input("Email of contact: ")
     address_ = input("Address of contact: ")
     cur.execute("INSERT OR IGNORE INTO contacts (first_name, last_name,phone_number, 
email,address)  VALUES (?, ?, ?, ?, ?)",
       (save_contact.firstName, lastName, phoneNumber, email_, address_))
     conn.commit()
def find_contact():
    emaiL = input('Enter email: ')
    query = f'''SELECT * FROM contacts WHERE email = {emaiL}'''
    lua = f'''SELECT first_name, phone_number FROM contacts WHERE email = {emaiL}'''
    #cur.execute("SELECT * FROM contacts (email) VALUES (?)", (email,))
    cur.execute(query)
    #conn.commit()
    print(cur.execute(lua))
req = input("Hello, would you like to save or search for a contact: ")
if str.lower(req) == 'save':
   save_contact()
   x = save_contact.firstName
   print("You have successfully saved " + x + "'s details")
elif str.lower(req) == 'search':
   find_contact()
The test run was:
Hello, would you like to save, search or update for a contact: 
search
Enter email: mine
The traceback:
Traceback (most recent call last):
  File "c:\Users\GLORIA\Desktop\MINE\db.py", line 60, in <module>
    find_contact()
  File "c:\Users\GLORIA\Desktop\MINE\db.py", line 33, in 
    find_contact
    cur.execute(query)
sqlite3.OperationalError: no such column: mine
 
     
     
    