We are using Insert statements for multi inserts like this:
INSERT INTO [db1].[dbo].[tb1] ([ID], [CLM1], [CLM2])
VALUES
('1', "A", "DB"),
('2', "AB", "BQ"),
('3', "AA", "BH"),
('4', "AD", "BT"),
('5', "AF", "EB"),
('6', "EA", "AB")
In the above table, ID is primary key, want to know one query with passing all values, values should update existing records and insert new records into table