代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/169003/9886078
gif sql.gif
www.eeworm.com/read/364890/9889108
exe sql.exe
www.eeworm.com/read/168805/9897100
txt sql.txt
CREATE TABLE USERLIST (ID INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY (START WITH 0, INCREMENT BY 1, NO CACHE ) , LOGINID VARCHAR (10) NOT NULL , PASSWD VARCHAR(10) NOT NULL , RULES INTEGER NOT
www.eeworm.com/read/364604/9903214
sql vote.sql
create database vote
go
use vote
go
--创建管理员信息表
drop table admin
create table admin
(
id int identity (1,1) primary key,
adminID varchar(20) not null,
adminPwd varchar(20) not null,
)
g
www.eeworm.com/read/364498/9905367
sql chinagate.sql
DROP TABLE hotel CASCADE CONSTRAINTS;
DROP TABLE customer CASCADE CONSTRAINTS;
DROP TABLE reservation CASCADE CONSTRAINTS;
DROP TABLE registration CASCADE CONSTRAINTS;
DROP TABLE room CASCADE CONS
www.eeworm.com/read/168555/9907841
txt sql速成.txt
一、<mark>SQL</mark>速成
以下是一些重要的<mark>SQL</mark>快速参考,有关<mark>SQL</mark>的语法和在标准<mark>SQL</mark>上增加的特性,请查询My<mark>SQL</mark>手册。
1.创建表
表是数据库的最基本元素之一,表与表之间可以相互独立,也可以相互关联。创建表的基本语法如下:
create table table_name
(column_name datatype {identity |null|not null},
…) ...
www.eeworm.com/read/168476/9911670
sql ddl.sql
CREATE TABLE Dealing (
DealingID int identity(1,1) Primary key ,
DealingDate datetime NOT NULL ,
DealingPrice money NOT NULL ,
UserName varchar(25) NULL ,
MemberCard varchar(20) NULL
)
www.eeworm.com/read/168476/9911678
sql data.sql
insert Factory(FactoryName,FactoryAddress,FactoryPhone) values('百事','add1','06124')
insert Factory(FactoryName,FactoryAddress,FactoryPhone) values('长虹','add2','32564')
insert Factory(FactoryName,Fac