Dexie.js
Dexie.js copied to clipboard
How can I get specific column?
my table
db.version(1).stores({products: '++id,name,color,price'});
my question
I just want to query color from my table with distinct In mysql like this SELECT DISTINCT color FROM product WHERE id > 0;