• Sean is right, you're overcomplicating things. You can use INSERT INTO...SELECT instead of values.

    INSERT INTO dbo.HemTransfer (

    TraTrtId

    ,TraAniId

    ,TraDate

    )

    SELECT 2

    ,ha.AniId

    ,ha.AniBirthday

    FROM HemAnimal ha --This is a guess

    WHERE ha.AniUserNumber = 123456

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2