代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/183001/5258717
sql tablefunc.sql
--
-- first, define the functions. Turn off echoing so that expected file
-- does not depend on contents of tablefunc.sql.
--
\set ECHO none
\i tablefunc.sql
\set ECHO all
--
-- normal_rand()
-- no
www.eeworm.com/read/183001/5258724
sql seg.sql
--
-- Test seg datatype
--
--
-- first, define the datatype. Turn off echoing so that expected file
-- does not depend on contents of seg.sql.
--
\set ECHO none
\i seg.sql
\set ECHO all
--
-- test
www.eeworm.com/read/183001/5258757
sql earthdistance.sql
--
-- Test earth distance functions
--
--
-- first, define the datatype. Turn off echoing so that expected file
-- does not depend on contents of earthdistance.sql or cube.sql.
--
\set ECHO none
\i
www.eeworm.com/read/183001/5258761
sql ltree.sql
\set ECHO none
\i ltree.sql
\set ECHO all
SELECT ''::ltree;
SELECT '1'::ltree;
SELECT '1.2'::ltree;
SELECT '1.2._3'::ltree;
SELECT ltree2text('1.2.3.34.sdf');
SELECT text2ltree('1.2.3.34.sdf');
SEL
www.eeworm.com/read/183001/5258804
sql init.sql
--
-- first, define the datatype. Turn off echoing so that expected file
-- does not depend on contents of btree_gist.sql.
--
\set ECHO none
\i btree_gist.sql
\set ECHO all
www.eeworm.com/read/183001/5258805
sql char.sql
-- char check
CREATE TABLE chartmp (a char(32));
\copy chartmp from 'data/char.data'
SET enable_seqscan=on;
SELECT count(*) FROM chartmp WHERE a < '31b0'::char(32);
SELECT count(*) FROM chartmp
www.eeworm.com/read/183001/5258806
sql inet.sql
-- inet check
CREATE TABLE inettmp (a inet);
\copy inettmp from 'data/inet.data'
SET enable_seqscan=on;
SELECT count(*) FROM inettmp WHERE a < '89.225.196.191';
SELECT count(*) FROM inettmp WHER
www.eeworm.com/read/183001/5258807
sql cash.sql
-- money check
CREATE TABLE moneytmp (a money) WITH OIDS;
\copy moneytmp from 'data/cash.data'
SET enable_seqscan=on;
SELECT count(*) FROM moneytmp WHERE a < '22649.64';
SELECT count(*) FROM mon
www.eeworm.com/read/183001/5258808
sql varbit.sql
-- varbit check
CREATE TABLE varbittmp (a varbit);
\copy varbittmp from 'data/varbit.data'
SET enable_seqscan=on;
SELECT count(*) FROM varbittmp WHERE a < '1110100111010';
SELECT count(*) FROM
www.eeworm.com/read/183001/5258809
sql bytea.sql
-- bytea check
CREATE TABLE byteatmp (a bytea);
\copy byteatmp from 'data/text.data'
\copy byteatmp from 'data/char.data'
SET enable_seqscan=on;
SELECT count(*) FROM byteatmp WHERE a < '31b0';