UIOMatic icon indicating copy to clipboard operation
UIOMatic copied to clipboard

Support match tables

Open mattbrailsford opened this issue 9 years ago • 2 comments

Currently when you use checkbox lists or multi select list, the values are stored as a comma separated string. Would be good if we could some how support match tables to allow better storage of these values as it makes lookups a bit difficult.

mattbrailsford avatar Nov 17 '16 12:11 mattbrailsford

Maybe change storage to JSON

Then you can use TSQL to query the json values directly

SELECT tblTest.*
FROM tblTest
    CROSS APPLY OPENJSON( tblTest.Options, '$') x
WHERE x.value = '5';

Killerkiwi2005 avatar Oct 20 '19 22:10 Killerkiwi2005

@Killerkiwi2005 good idea, but not an easy task I think

TimGeyssens avatar Jun 18 '20 12:06 TimGeyssens