代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/459629/1566548
sql syspoll.sql
-- MySQL Administrator dump 1.4
--
-- ------------------------------------------------------
-- Server version 4.1.12a-nt
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*
www.eeworm.com/read/458810/1581142
sql insertperson.sql
INSERT INTO PERSON (ID, FIRST_NAME, LAST_NAME) VALUES (1, 'Tony', 'Blair');
INSERT INTO DRIVERS_LICENSE (ID, SERIAL_NUMBER) VALUES (1, '8439DK');
www.eeworm.com/read/458049/1589920
sql sampledb.sql
DROP TABLE IF EXISTS `samples_tree`;
CREATE TABLE `samples_tree` (
`item_id` int(10) unsigned NOT NULL auto_increment,
`item_nm` varchar(200) default '0',
`item_order` int(10) unsigned defau
www.eeworm.com/read/458008/1590232
sql create.sql
drop table if exists users;
drop table if exists line_items;
drop table if exists orders;
drop table if exists products;
create table products (
id int not null auto_increment
www.eeworm.com/read/458008/1590233
sql populate.sql
insert into products values(1, "Programming Ruby, 2nd Edition", "",
"", 44.95, now());
insert into products values(2, "Pragmatic Project Automation", "",
"", 29.95, now());
insert into orders values(
www.eeworm.com/read/458008/1590282
sql drop.sql
drop table users;
drop table line_items;
drop table orders;
drop table products;