代码搜索:create
找到约 10,000 项符合「create」的源代码
代码结果 10,000
www.eeworm.com/read/100285/6270767
sgml create_aggregate.sgml
CREATE AGGREGATE
SQL - Language Statements
www.eeworm.com/read/100285/6271937
out create_misc.out
QUERY: INSERT INTO tenk2 VALUES (tenk1.*);
QUERY: SELECT * INTO TABLE onek2 FROM onek;
QUERY: INSERT INTO fast_emp4000 VALUES (slow_emp4000.*);
QUERY: SELECT *
INTO TABLE Bprime
FROM tenk1
WH
www.eeworm.com/read/100285/6271944
out create_view.out
QUERY: CREATE VIEW street AS
SELECT r.name, r.thepath, c.cname AS cname
FROM road r, real_city c
WHERE c.outline ## r.thepath;
QUERY: CREATE VIEW iexit AS
SELECT ih.name, ih.thepath,
inte
www.eeworm.com/read/100285/6271956
out create_operator.out
QUERY: CREATE OPERATOR ## (
leftarg = path,
rightarg = path,
procedure = path_inter,
commutator = ##
);
QUERY: CREATE OPERATOR
www.eeworm.com/read/100285/6271960
out create_aggregate.out
QUERY: CREATE AGGREGATE newavg (
sfunc1 = int4pl, basetype = int4, stype1 = int4,
sfunc2 = int4inc, stype2 = int4,
finalfunc = int4div,
initcond1 = '0', initcond2 = '0'
);
QUERY: CREATE AG
www.eeworm.com/read/100285/6271975
out create_index.out
QUERY: CREATE INDEX onek_unique1 ON onek USING btree(unique1 int4_ops);
QUERY: CREATE INDEX onek_unique2 ON onek USING btree(unique2 int4_ops);
QUERY: CREATE INDEX onek_hundred ON onek USING btree(hun
www.eeworm.com/read/100285/6272002
out create_table.out
QUERY: CREATE TABLE hobbies_r (
name text,
person text
);
QUERY: CREATE TABLE equipment_r (
name text,
hobby text
);
QUERY: CREATE TABLE onek (
unique1 int4,
unique2 int4,
two int4,
f
www.eeworm.com/read/100285/6272013
out create_type.out
QUERY: CREATE TYPE widget (
internallength = 24,
input = widget_in,
output = widget_out,
alignment = double
);
QUERY: CREATE TYPE city_budget (
internallength = 16,
input = int44in,
www.eeworm.com/read/100285/6272020
sql create_operator.sql
--
-- OPERATOR DEFINITIONS
--
CREATE OPERATOR ## (
leftarg = path,
rightarg = path,
procedure = path_inter,
commutator = ##
);
CREATE OPERATOR
www.eeworm.com/read/100285/6272028
sql create_view.sql
--
-- VIRTUAL CLASS DEFINITIONS
-- (this also tests the query rewrite system)
--
CREATE VIEW street AS
SELECT r.name, r.thepath, c.cname AS cname
FROM road r, real_city c
WHERE c.outline ##