back

by porridgeraisin·2y ago·view on hn ↗
It's also useful to build a query string with where clauses appearing conditionally.

  where_clause = "where 1=1"
  if video.nsfw:
      where_clause += " and age > 18"
  if whatever:
      where_clause += " and whatever"
  
  query = "select * from user {where_clause}"