Nachricht in RAISERROR verketten

Was ist die richtige Syntax hier?

<code>If (@timestamp < (Select PromoStartTimestamp From @promo))
    RAISERROR('Code not valid until ' + (Select PromoStartTimestamp From @promo)
              ,16
              ,1);
</code>

Ich habe es versucht:

<code>If (@timestamp < (Select PromoStartTimestamp From @promo))
    RAISERROR(N'Code not valid until @starttimestamp'
              ,16
              ,1
              ,(Select PromoStartTimestamp From @promo));
</code>

Antworten auf die Frage(1)

Ihre Antwort auf die Frage