代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/100285/6271793
py func.py
# func.py - demonstrate the use of SQL functions
# inspired from the PostgreSQL tutorial
# adapted to Python 1995 by Pascal ANDRE
print "_____________________________________________________________
www.eeworm.com/read/100285/6271895
wisc-readme
The Postgres Wisconsin Benchmark
In this directory are the queries and raw data files used to populate the
Postgres version of the Wisconsin benchmark. In order to run the benchmark,
you'll initiall
www.eeworm.com/read/100285/6271992
out euc_kr.out
QUERY: drop table 酮擤薛侩绢;
ERROR: Relation '酮擤薛侩绢' does not exist
QUERY: create table 酮擤薛侩绢 (侩绢 text, 萋拙内靛 varchar, 厚绊1A扼备 char(16));
QUERY: create index 酮擤薛侩绢index1 on 酮擤薛侩绢 using btree (侩绢);
QUERY: c
www.eeworm.com/read/100285/6272060
sql euc_tw.sql
drop table 燹俑骜砧;
create table 燹俑骜砧 (如淦杀 text, 狞瞥婉螭 varchar, 氢蛇 varchar(16));
create index 燹俑骜砧index1 on 燹俑骜砧 using btree (如淦杀);
create index 燹俑骜砧index2 on 燹俑骜砧 using hash (狞瞥婉螭);
insert into 燹俑骜砧 valu
www.eeworm.com/read/100285/6272090
sql euc_jp.sql
drop table 纷换怠脱胳;
create table 纷换怠脱胳 (脱胳 text, 尸梧コ〖ド varchar, 洒雇1Aだよ char(16));
create index 纷换怠脱胳index1 on 纷换怠脱胳 using btree (脱胳);
create index 纷换怠脱胳index2 on 纷换怠脱胳 using hash (尸梧コ〖ド);
insert into 纷换
www.eeworm.com/read/100285/6272100
out rules.sql.out
QUERY: create table foo (x int4);
QUERY: select * from foo;
x
--
QUERY: create table bar (x int4, y float4);
QUERY: create rule rule1 as on insert to bar do insert into foo (x) values (new.x);
QUER
www.eeworm.com/read/100285/6272101
out views.sql.out
QUERY: create table v1 (x int4, y int4, z int4);
QUERY: insert into v1 values (1, 2, 3);
QUERY: insert into v1 values (1, 3, 4);
QUERY: insert into v1 values (1, 4, 5);
QUERY: insert into v1 values (1
www.eeworm.com/read/100285/6272121
sql quote.sql
create table quoteTBL (f text);
insert into quoteTBL values ('hello world');
insert into quoteTBL values ('hello '' world');
insert into quoteTBL values ('hello \' world');
insert into quoteTBL value
www.eeworm.com/read/100285/6272123
sql sqlcompat.sql
---------------------------------------------------------------------------
--
-- sqlcompat.sql-
-- test aliases for SQL basic types and aggregates
--
--
-- Copyright (c) 1994-5, Regents of the Uni
www.eeworm.com/read/100285/6272125
sql views.sql
---------------------------------------------------------------------------
--
-- views.sql-
-- test views queries
--
--
-- Copyright (c) 1994-5, Regents of the University of California
--
-- $Id: