Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support match tables #100

Open
mattbrailsford opened this issue Nov 17, 2016 · 2 comments
Open

Support match tables #100

mattbrailsford opened this issue Nov 17, 2016 · 2 comments

Comments

@mattbrailsford
Copy link
Collaborator

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.

@Killerkiwi2005
Copy link

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';

@TimGeyssens
Copy link
Owner

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants