• CREATE TABLE BILL_DETAIL

    ([objid] int,[x_billable_to] varchar(19), [x_bill_quantity] int,

    [x_billable_yn] int, [x_bill_rate] int, [COST_TYPE] varchar(19) )

    ;

    INSERT INTO BILL_DETAIL

    ([objid], [x_billable_to], [x_bill_quantity], [x_billable_yn], [x_bill_rate],[COST_TYPE])

    VALUES

    (1, 'Customer', 3, 1, 20,'Parking'),

    (2, 'Customer', 1, 1, 25,'Toll'),

    (3, 'Customer', 2, 1, 20,'Parking')

    and for Column List_IDs i need the values in the format of 1,2,3

    use above values and