I am trying to select multiple columns, but not all of the columns, from the database. All of the columns I want to select are going to start with \"word\".
No, you cannot dynamically produce the list of columns to be selected. It will have to be hardcoded in your final query.
Your current query would produce a result set with one column and the value of that column would be the string "word%" in all rows that satisfy the condition.