Dexie.js icon indicating copy to clipboard operation
Dexie.js copied to clipboard

How can I get specific column?

Open Invincible1996 opened this issue 3 years ago • 0 comments

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;

Invincible1996 avatar Feb 14 '22 02:02 Invincible1996