blob: 85282e627faaf6165d1fecd3e91b7218de53d337 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
drop table ͪߩѦ¿ë¾î;
ERROR: parser: parse error at or near "("
create table ͪߩѦ¿ë¾î (¿ë¾î text, ÝÂ×¾ÄÚµå varchar, ºñ°í1A¶ó±¸ char(16));
ERROR: parser: parse error at or near "("
create index ͪߩѦ¿ë¾îindex1 on ͪߩѦ¿ë¾î using btree (¿ë¾î);
ERROR: parser: parse error at or near "("
create index ͪߩѦ¿ë¾îindex2 on ͪߩѦ¿ë¾î using hash (ÝÂ×¾ÄÚµå);
ERROR: parser: parse error at or near "("
insert into ͪߩѦ¿ë¾î values('ÄÄÇ»Å͵ð½ºÇ÷¹ÀÌ', 'ѦA01ß¾');
ERROR: parser: parse error at or near "("
insert into ͪߩѦ¿ë¾î values('ÄÄÇ»Åͱ׷¡ÇȽº', 'ÝÂB10ñé');
ERROR: parser: parse error at or near "("
insert into ͪߩѦ¿ë¾î values('ÄÄÇ»ÅÍÇÁ·Î±×·¡¸Ó', 'ìÑZ01ù»');
ERROR: parser: parse error at or near "("
vacuum ͪߩѦ¿ë¾î;
ERROR: parser: parse error at or near "("
select * from ͪߩѦ¿ë¾î;
ERROR: parser: parse error at or near "92"
select * from ͪߩѦ¿ë¾î where ÝÂ×¾ÄÚµå = 'ìÑZ01ù»';
ERROR: parser: parse error at or near "92"
select * from ͪߩѦ¿ë¾î where ÝÂ×¾ÄÚµå ~* 'ìÑz01ù»';
ERROR: parser: parse error at or near "92"
select * from ͪߩѦ¿ë¾î where ÝÂ×¾ÄÚµå like '_Z01_';
ERROR: parser: parse error at or near "92"
select * from ͪߩѦ¿ë¾î where ÝÂ×¾ÄÚµå like '_Z%';
ERROR: parser: parse error at or near "92"
select * from ͪߩѦ¿ë¾î where ¿ë¾î ~ 'ÄÄÇ»ÅÍ[µð±×]';
ERROR: parser: parse error at or near "92"
select * from ͪߩѦ¿ë¾î where ¿ë¾î ~* 'ÄÄÇ»ÅÍ[µð±×]';
ERROR: parser: parse error at or near "92"
select *,character_length(¿ë¾î) from ͪߩѦ¿ë¾î;
ERROR: parser: parse error at or near "bfeb"
select *,octet_length(¿ë¾î) from ͪߩѦ¿ë¾î;
ERROR: parser: parse error at or near "bfeb"
select *,position('µð' in ¿ë¾î) from ͪߩѦ¿ë¾î;
ERROR: parser: parse error at or near "bfeb"
select *,substring(¿ë¾î from 3 for 4) from ͪߩѦ¿ë¾î;
ERROR: parser: parse error at or near "bfeb"
|