What is it you are trying to accomplish? Is [TimeOfMessage] a field in BUQ?
If so, then you need to give it an alias like this:
SELECT BUQ.*,Format(BUQ.TimeOfMessage,"@@@@") As MessageTime
FROM BUQ;
Now your query will have an additional field named MessageTime.