代码搜索:sql

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

代码结果 10,000
www.eeworm.com/read/183001/5260372

sql rangefuncs.sql

SELECT name, setting FROM pg_settings WHERE name LIKE 'enable%'; CREATE TABLE foo2(fooid int, f2 int); INSERT INTO foo2 VALUES(1, 11); INSERT INTO foo2 VALUES(2, 22); INSERT INTO foo2 VALUES(1, 111);
www.eeworm.com/read/183001/5260373

sql abstime.sql

-- -- ABSTIME -- testing built-in time type abstime -- uses reltime and tinterval -- -- -- timezones may vary based not only on location but the operating -- system. the main correctness issue is th
www.eeworm.com/read/183001/5260374

sql lseg.sql

-- -- LSEG -- Line segments -- --DROP TABLE LSEG_TBL; CREATE TABLE LSEG_TBL (s lseg); INSERT INTO LSEG_TBL VALUES ('[(1,2),(3,4)]'); INSERT INTO LSEG_TBL VALUES ('(0,0),(6,6)'); INSERT INTO LSEG_TBL
www.eeworm.com/read/183001/5260376

sql dependency.sql

-- -- DEPENDENCIES -- CREATE USER regression_user; CREATE USER regression_user2; CREATE USER regression_user3; CREATE GROUP regression_group; CREATE TABLE deptest (f1 serial primary key, f2 text);
www.eeworm.com/read/183001/5260377

sql select.sql

-- -- SELECT -- -- btree index -- awk '{if($1
www.eeworm.com/read/183001/5260378

sql update.sql

-- -- UPDATE ... SET = DEFAULT; -- CREATE TABLE update_test ( a INT DEFAULT 10, b INT ); INSERT INTO update_test VALUES (5, 10); INSERT INTO update_test VALUES (10, 15); SELECT *
www.eeworm.com/read/183001/5260380

sql case.sql

-- -- 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); INS
www.eeworm.com/read/183001/5260382

sql temp.sql

-- -- TEMP -- Test temp relations and indexes -- -- test temp table/index masking CREATE TABLE temptest(col int); CREATE INDEX i_temptest ON temptest(col); CREATE TEMP TABLE temptest(tcol int); C
www.eeworm.com/read/183001/5260384

sql date.sql

-- -- DATE -- CREATE TABLE DATE_TBL (f1 date); INSERT INTO DATE_TBL VALUES ('1957-04-09'); INSERT INTO DATE_TBL VALUES ('1957-06-13'); INSERT INTO DATE_TBL VALUES ('1996-02-28'); INSERT INTO DATE_TB
www.eeworm.com/read/183001/5260385

sql reltime.sql

-- -- RELTIME -- CREATE TABLE RELTIME_TBL (f1 reltime); INSERT INTO RELTIME_TBL (f1) VALUES ('@ 1 minute'); INSERT INTO RELTIME_TBL (f1) VALUES ('@ 5 hour'); INSERT INTO RELTIME_TBL (f1) VALUES ('