PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

CS50:operatore LIKE, sostituzione variabile con espansione %

Passa l'intera stringa di ricerca come parametro all'operatore LIKE :

results = db.execute(text("SELECT * FROM books WHERE title LIKE :search"),
                     {"search": f"%{search}%"}).fetchall();

o in alternativa concatenare nel database:

results = db.execute(
    text("SELECT * FROM books WHERE title LIKE ('%' || :search || '%')"),
    {"search": search}).fetchall();