代码搜索:sql

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

代码结果 10,000
www.eeworm.com/read/173141/5379038

sql floattypes.sql

-- ** insert decimal.sql -- -- Test DECIMAL and NUMERIC. Note that we -- know that DECIMAL and NUMERIC are pretty much the -- same thing, so we don't do much testing with -- the two types other than
www.eeworm.com/read/173141/5379041

sql langunittests.sql

-- just a simple query so that we have a .sql file values 1;
www.eeworm.com/read/173141/5379043

sql innerjoin.sql

-- test inner joins -- (NO NATURAL JOIN) autocommit off; -- create some tables create table t1(c1 int); create table t2(c1 int); create table t3(c1 int); create table insert_test(c1 int, c2 int, c
www.eeworm.com/read/173141/5379051

sql groupby.sql

-- negative tests for group by and having clauses create table t1 (a int, b int, c int); create table t2 (a int, b int, c int); insert into t2 values (1,1,1), (2,2,2); -- group by position select *
www.eeworm.com/read/173141/5379052

sql orderby.sql

-- order by tests -- in V52, we allow "select a from t order by b" where the ORDERBY column doesn't necessarily appear in the SELECT list. autocommit off; -- . order by on values values (1,0,1),(1,0
www.eeworm.com/read/173141/5379055

sql big.sql

-- create table with row greater than 32K -- try with just one row of data - JCC may handle those differently? create table big(c1 varchar(10000), c2 varchar(10000), c3 varchar(10000), c4 varchar(1000
www.eeworm.com/read/173141/5379105

sql testclientij.sql

driver 'org.apache.derby.jdbc.ClientDriver'; --Bug 4632 Make the db italian to make sure string selects are working connect 'jdbc:derby://localhost:1527/wombat;create=true;territory=it' USER 'dbadmi
www.eeworm.com/read/173141/5379143

sql testij.sql

driver 'com.ibm.db2.jcc.DB2Driver'; --Bug 4632 Make the db italian to make sure string selects are working connect 'jdbc:derby:net://localhost:1527/wombat;create=true;territory=it:retrieveMessagesFr
www.eeworm.com/read/173141/5379148

sql messagelocale.sql

-- This test uses dummy messages from org/apache/derby/loc/message_qq_PP_testOnly.properties -- -- Message locale handling -- --; -- load a fake driver that is really a piece of -- code that sets the
www.eeworm.com/read/173141/5379153

sql japancodeconversion.sql

drop table T1_EUC_JP; -- table for data in EUC_JP encoding create table T1_EUC_JP ( jnum int, jtime time, jstring char(200) ); -- import data in EUC_JP encoding call SYSCS_UTIL.SYSCS_IMPORT_