appendInterpolation(_:)
Appends the name of the collation.
mutating func appendInterpolation(_ collation: DatabaseCollation)
let request: SQLRequest<Player> = """
SELECT * FROM player
ORDER BY name COLLATING \(DatabaseCollation.localizedCaseInsensitiveCompare)
"""