Obviously, we don't understand each other, so I'll try it this way.
I created the table Uitvoering
CREATE TABLE [dbo].[uitvoering](
[uitvoering_key] [int] IDENTITY(1,1) NOT NULL,
[uitv_code] [nvarchar](100) NULL,
[model_key] [int] NULL,
[uitv] [nvarchar](75) NULL,
[beschrijving] [nvarchar](max) NULL,
[create_timestamp]...