This is a follow up question to my previous one. I want to write a MYSQL statement that echoes every entry that starts with letter B.
Function.php
f
SELECT author FROM lyrics WHERE author LIKE 'B%';
Make sure you have an index on author, though!
author