代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/451531/7462524
sql vote.sql
drop table vote;
create table vote(
id nvarchar(40) primary key,
item nvarchar(40) ,
count numeric(10,0)
);
insert into vote values ('Robin','Robin',0);
insert into vote values ('David','D
www.eeworm.com/read/451531/7462525
sql studentmanager.sql
--database name:student user:root password:123
drop table studentInfo;
create table studentInfo(
id numeric(4) primary key,
name nvarchar(20) not null,
phone numeric(20),
mobile numeric(
www.eeworm.com/read/451150/7470474
sql strutsbbs.sql
use bbs;
# MySQL dump 8.14
#
# Host: localhost Database: bbs
#--------------------------------------------------------
# Server version 3.23.41-nt
#
# Table structure for table 'admin'
#
www.eeworm.com/read/451068/7472740
sql hotel.sql
www.eeworm.com/read/451064/7472813
sql trade.sql
www.eeworm.com/read/451013/7473727
sql material.sql
www.eeworm.com/read/450852/7475628
sql username.sql
www.eeworm.com/read/450785/7476824
sql logistic.sql
-- MySQL dump 10.11
--
-- Host: localhost Database: logistic
-- ------------------------------------------------------
-- Server version 5.0.37-community-nt
/*!40101 SET @OLD_CHARACTER_SET_C
www.eeworm.com/read/450692/7477755
sql createdb.sql
CREATE TABLE PUBLISHER(
PublisherID INTEGER,
Name VARCHAR(20),
Address VARCHAR(40),
CONSTRAINT PK_PUBLISHER PRIMARY KEY(PublisherID)
);
CREATE TABLE BOOK(
www.eeworm.com/read/450692/7477757
sql queries.sql
1.
select libid,fname,join_date
from member4
where (libid like 'Ax%B%' escape 'x' or libid like 'A&B%')
and join_date < to_date('1997/11/30', 'YYYY/MM/DD');
2.
SELECT f.name,f.isbn,f.callnum