please i need your help i have two tables the first one is full with all calendar data dim_table_start(pk_date_deb,year,month,trimester,week,date) and i want to fill the second table with data from dim_data_start dim_table_end(pk_date_fin,year,month,trimester,week,date) i tried :
INSERT INTO [bd_disponibilite].[dbo].[dim_date_fin]
([PK_Date_fin]
,[Year]
,[Trimester]
,[Month]
,[Week]
)
VALUES
(select * from dbo.dim_date_Debut)
but doesn't work
how can i add all data table to fill the second table thank you