135
135
hello again hello hello again 3 hello again hello again
136
136
hello again hello hello again 3 hello again hello again
139
select collation(@a),coercibility(@a);
140
collation(@a) coercibility(@a)
142
select @a=_utf8'TEST';
145
select @a=_utf8'TEST' collate utf8_bin;
146
@a=_utf8'TEST' collate utf8_bin
148
set @a=_utf8'test' collate utf8_general_ci;
149
select collation(@a),coercibility(@a);
150
collation(@a) coercibility(@a)
152
select @a=_utf8'TEST';
155
select @a=_utf8'TEST' collate utf8_bin;
156
@a=_utf8'TEST' collate utf8_bin
158
select collation(@a:=_utf8'test');
159
collation(@a:=_utf8'test')
139
select collation(@a),coercibility(@a);
140
collation(@a) coercibility(@a)
145
select @a='TEST' collate utf8_bin;
146
@a='TEST' collate utf8_bin
148
set @a='test' collate utf8_general_ci;
149
select collation(@a),coercibility(@a);
150
collation(@a) coercibility(@a)
155
select @a='TEST' collate utf8_bin;
156
@a='TEST' collate utf8_bin
158
select collation(@a:='test');
159
collation(@a:='test')
161
select coercibility(@a:=_utf8'test');
162
coercibility(@a:=_utf8'test')
161
select coercibility(@a:='test');
162
coercibility(@a:='test')
164
select collation(@a:=_utf8'test' collate utf8_bin);
165
collation(@a:=_utf8'test' collate utf8_bin)
164
select collation(@a:='test' collate utf8_bin);
165
collation(@a:='test' collate utf8_bin)
167
select coercibility(@a:=_utf8'test' collate utf8_bin);
168
coercibility(@a:=_utf8'test' collate utf8_bin)
167
select coercibility(@a:='test' collate utf8_bin);
168
coercibility(@a:='test' collate utf8_bin)
170
select (@a:=_utf8'test' collate utf8_bin) = _utf8'TEST';
171
(@a:=_utf8'test' collate utf8_bin) = _utf8'TEST'
170
select (@a:='test' collate utf8_bin) = 'TEST';
171
(@a:='test' collate utf8_bin) = 'TEST'
173
173
select collation(@a),coercibility(@a);
174
174
collation(@a) coercibility(@a)
176
select (@a:=_utf8'test' collate utf8_bin) = _utf8'TEST' collate utf8_general_ci;
177
(@a:=_utf8'test' collate utf8_bin) = _utf8'TEST' collate utf8_general_ci
176
select (@a:='test' collate utf8_bin) = 'TEST' collate utf8_general_ci;
177
(@a:='test' collate utf8_bin) = 'TEST' collate utf8_general_ci
180
180
select FIELD( @var,'1it','Hit') as my_column;