I use Abbriviates to insert flower colours into a column (Fcolor) of my database. Like this;
Red (A)
Orange (B)
Yellow (C)
Green (E)
Blue (G)
Violet (H)
Pink (I)
White (J)
Creamy (K)
Black (L)
Gray (M)
Brown (N)
When 1 flower has more than 1 color, I add them as combinations like;
AB, CG, ABC
My database's flowercolor table looks like this;
ID Fcolor
1 AC
2 BC
3 K
4 IJA
I need to ritrive an output like this; (ID's of flowers contain Red colour)
Red colour Flower ID's
1
4
Red is indicated by "A". It doesnt really matter there r some other colors in that cell. ex: ID 1 flower have Red and yellow. But it doesnt matter I need to get flowers that contain redcolour. This can be done using Wild cards.
or is there a better method to add colors to a database? pls help