Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

python sqlite3 search


# deleteInput=int(input("enter delete number for id 
"))
name=input("enter your update query")
data =conn.execute(f"SELECT * FROM CLIENTS WHERE Client_Name like '{name}'")
for i in data:
    print(i[0],"   ",i[1],"   ",i[2],"   ",i[3])
 
PREVIOUS NEXT
Tagged: #python #search
ADD COMMENT
Topic
Name
7+9 =