When I use:
INSERT ... 'ąść' ...
it adds the value 'asc'. Why does this happen? I wrote CHARACTER SET utf8
at end of table declaration, also used COLLATE utf8 polish ci
. I also tried:
INSERT ... VALUE ( N'ąść' )
but it doesn't work. N - for unicode like someone wrote here.