代码搜索:sql

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

代码结果 10,000
www.eeworm.com/read/388015/2552669

sql person.sql

DROP TABLE person ; CREATE TABLE person ( id varchar(20) not null primary key , name varchar(20) not null , password varchar(20) ) ; INSERT INTO person (id,name,password) VALUES ('lxh'
www.eeworm.com/read/387667/2556891

sql earthdistance.sql

-- Adjust this setting to control where the objects get created. SET search_path = public; -- The earth functions rely on contrib/cube having been installed and loaded. -- earth() returns the radius
www.eeworm.com/read/387667/2556897

sql refint.sql

-- Adjust this setting to control where the objects get created. SET search_path = public; CREATE OR REPLACE FUNCTION check_primary_key() RETURNS trigger AS '$libdir/refint' LANGUAGE C; CREATE OR RE
www.eeworm.com/read/387667/2556900

sql sslinfo.sql

SET search_path = public; CREATE OR REPLACE FUNCTION ssl_client_serial() RETURNS numeric LANGUAGE C STRICT AS '$libdir/sslinfo', 'ssl_client_serial'; CREATE OR REPLACE FUNCTION ssl_is_used()
www.eeworm.com/read/387667/2556902

sql adminpack.sql

/* *********************************************** * Administrative functions for PostgreSQL * *********************************************** */ /* generic file access functions */ CREATE FUNCTI
www.eeworm.com/read/387667/2556903

sql moddatetime.sql

-- Adjust this setting to control where the objects get created. SET search_path = public; CREATE OR REPLACE FUNCTION moddatetime() RETURNS trigger AS '$libdir/moddatetime' LANGUAGE C;
www.eeworm.com/read/387667/2556904

sql chkpass.sql

-- -- PostgreSQL code for CHKPASS. -- Written by D'Arcy J.M. Cain -- darcy@druid.net -- http://www.druid.net/darcy/ -- -- $PostgreSQL: pgsql/contrib/chkpass/chkpass.sql.in,v 1.6 2005/01/29 22:35:
www.eeworm.com/read/387667/2556910

sql pgrowlocks.sql

-- Adjust this setting to control where the objects get created. SET search_path = public; CREATE TYPE pgrowlocks_type AS ( locked_row TID, -- row TID lock_type TEXT, -- lock type locker XID, -
www.eeworm.com/read/387667/2556914

sql seg.sql

-- Create the user-defined type for 1-D floating point intervals (seg) -- -- Adjust this setting to control where the objects get created. SET search_path = public; CREATE FUNCTION seg_in(cstring)
www.eeworm.com/read/387667/2556918

sql tablefunc.sql

-- Adjust this setting to control where the objects get created. SET search_path = public; CREATE OR REPLACE FUNCTION normal_rand(int4, float8, float8) RETURNS setof float8 AS '$libdir/tablefunc','no