Search engines are integral features to any well designed website, but how well does your search engine work? Most simple search engines work by querying one column of a database for the search terms.
A common SQL habit is to use SELECT * on a query, because it’s tedious to list all the columns you need. Plus, sometimes those columns may change over time, so why not just do things the easy way? But ...