I use the set column type a lot
mysetcol set("a","b","c")
Does anyone know if you can make it case sensitive
mysetcol set("a","A","b","B","c","C")
Basically I would like to get this to work ..
mysetcol set("a","b","c")
Does anyone know if you can make it case sensitive
mysetcol set("a","A","b","B","c","C")
Basically I would like to get this to work ..
Code:
create table t
(
mycharcol char(1),
mysetcol set("a","A","b","B","c","C")
);
insert into t
(mycharcol,mysetcol)
values
("a","a"),
("b","b"),
("c","c"),
("A","A"),
("B","B"),
("C","C");
select
*
from t;