代码搜索:OUT

找到约 10,000 项符合「OUT」的源代码

代码结果 10,000
www.eeworm.com/read/376006/2717074

out plperl.out

-- -- Test result value processing -- CREATE OR REPLACE FUNCTION perl_int(int) RETURNS INTEGER AS $$ return undef; $$ LANGUAGE plperl; SELECT perl_int(11); perl_int ---------- (1 row) SEL
www.eeworm.com/read/376006/2717996

out sequence.out

--- --- test creation of SERIAL column --- CREATE TABLE serialTest (f1 text, f2 serial); NOTICE: CREATE TABLE will create implicit sequence "serialtest_f2_seq" for serial column "serialtest.f2" I
www.eeworm.com/read/376006/2717997

out aggregates.out

-- -- AGGREGATES -- SELECT avg(four) AS avg_1 FROM onek; avg_1 -------------------- 1.5000000000000000 (1 row) SELECT avg(a) AS avg_32 FROM aggtest WHERE a < 100; avg_32
www.eeworm.com/read/376006/2718000

out numeric.out

-- -- NUMERIC -- CREATE TABLE num_data (id int4, val numeric(210,10)); CREATE TABLE num_exp_add (id1 int4, id2 int4, expected numeric(210,10)); CREATE TABLE num_exp_sub (id1 int4, id2 int4, expected n
www.eeworm.com/read/376006/2718001

out money.out

-- -- MONEY -- CREATE TABLE money_data (m money); INSERT INTO money_data VALUES ('123'); SELECT * FROM money_data; m --------- $123.00 (1 row) SELECT m + '123' FROM money_data; ?column? --
www.eeworm.com/read/376006/2718002

out copyselect.out

-- -- Test cases for COPY (select) TO -- create table test1 (id serial, t text); NOTICE: CREATE TABLE will create implicit sequence "test1_id_seq" for serial column "test1.id" insert into test1 (t) v
www.eeworm.com/read/376006/2718008

out tsdicts.out

--Test text search dictionaries and configurations -- Test ISpell dictionary with ispell affix file CREATE TEXT SEARCH DICTIONARY ispell ( Template=ispell,
www.eeworm.com/read/376006/2718010

out xml.out

CREATE TABLE xmltest ( id int, data xml ); INSERT INTO xmltest VALUES (1, 'one'); INSERT INTO xmltest VALUES (2, 'two'); INSERT INTO xmltest VALUES (3, '
www.eeworm.com/read/376006/2718011

out box.out

-- -- BOX -- -- -- box logic -- o -- 3 o--|X -- | o| -- 2 +-+-+ | -- | | | | -- 1 | o-+-o -- | | -- 0 +---+ -- -- 0 1 2 3 -- -- boxes are specified by two points, given by four floats x1,y
www.eeworm.com/read/376006/2718012

out case.out

-- -- CASE -- Test the case statement -- CREATE TABLE CASE_TBL ( i integer, f double precision ); CREATE TABLE CASE2_TBL ( i integer, j integer ); INSERT INTO CASE_TBL VALUES (1, 10.1); INSERT