J. Peter MacKay
24-Jul-2025 02:55:44
Hoping someone can help me with something. I have a table that has 9 different columns that are all a 1 character varchar. I want to put them all into a checkbox group.
This query will get the things I want to change in a single checkbox group. Just so you can see where I'm starting from.
select
CB_ITEM_1,
CB_ITEM_2,
CB_ITEM_3,
CB_ITEM_4,
CB_ITEM_5,
CB_ITEM_6,
CB_ITEM_7,
CB_ITEM_8,
CB_ITEM_9,
from PARTS_CATALOG
where PART_NUMBER = P350_ID
What I want is a single row of these nine fields where I can turn any one of them, or all of them on or off.
I am not familiar with using a Checkbox Group, can they even be used to change multiple values from a single row in a table? I don't want to create 9 separate checkboxes if I can do it all in a single checkbox group.