SELECT '"' + SPACE(20-LEN('this')) + 'this' + '"'
, '"' + SPACE(20-LEN('is')) + 'is' + '"'
, '"' + SPACE(50-LEN('a')) + 'a' + '"'
, '"' + SPACE(50-LEN('test')) + 'test' + '"'
This is just an example. I am not sure if this is the best way but it works for me. Just replace the text with the fields you want in the query.
You don't need the '"' in the query, they are just to make the result of this example more visible
Atomic Wedgie