Show each title upper-cased (as shout) and its character length (as len). space to flip Show each title upper-cased (as shout) and its character length (as len). Answer SELECT upper(title) AS shout, length(title) AS len FROM books;