Hi having a little bit of an issue and wondered if its possible to do soemthing better??
so create table new_tbl (id int, basket varchar(10), Calc numeric)
insert into new_tbl
values (1, 'Test', 123.12)
, (2, 'Test', 456.78)
, (3, 'Test', 901.12)
My question is the only way...