代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/437257/1835610
sql select.sql
-- Not required. Just shows the sort of queries being sent to DB.
select ACL_OBJECT_IDENTITY.OBJECT_ID_IDENTITY, ACL_ENTRY.ACE_ORDER,
ACL_OBJECT_IDENTITY.ID as ACL_ID,
ACL_OBJECT_IDENTITY.PARE
www.eeworm.com/read/437257/1835611
sql testdata.sql
-- Injected into DatabaseSeeder via applicationContext-test.xml (see test case JdbcAclServiceTests)
-- DROP TABLE ACL_ENTRY;
-- DROP TABLE ACL_OBJECT_IDENTITY;
-- DROP TABLE ACL_CLASS;
-- DROP T
www.eeworm.com/read/436939/1839594
sql sampledb.sql
DROP TABLE IF EXISTS `samples_grid`;
CREATE TABLE `samples_grid` (
`book_id` int(10) unsigned NOT NULL auto_increment,
`sales` int(10) default '0',
`title` varchar(200),
`author` varchar(
www.eeworm.com/read/436526/1848595
sql gk.sql
DROP TABLE IF EXISTS `role`;
CREATE TABLE `role` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(255) default NULL,
`description` varchar(255) default NULL,
PRIMARY KEY (`id`)
www.eeworm.com/read/436526/1848611
sql gk.sql
DROP TABLE IF EXISTS `role`;
CREATE TABLE `role` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(255) default NULL,
`description` varchar(255) default NULL,
PRIMARY KEY (`id`)
www.eeworm.com/read/435712/1861014
java sql.java
/*
* Copyright 2004 Clinton Begin
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain
www.eeworm.com/read/434150/1874662
sql create.sql
---------------------------------------------------------------------------------------------
-- build data table structure
--------------------------------------------------------------------------
www.eeworm.com/read/433996/1875243
sql init.sql
drop table iFeedBackQs;
drop table iFeedBackAs;
create table iFeedBackQs
(
qid integer,
question varchar(1024),
choices varchar(2048),
visible boolean
);
create table iFeedBackAs