代码搜索:SqL
找到约 10,000 项符合「SqL」的源代码
代码结果 10,000
www.eeworm.com/read/239243/13292934
sql sql.sql
www.eeworm.com/read/320902/13416499
sql sql.sql
create database ClassSay
go
use ClassSay
go
create table ClassUserID
(
UserID int identity(1,1) primary key,
UserName varchar(20) unique,
UserPassword varchar(20),
UserQQ int,
UserM
www.eeworm.com/read/320370/13428000
sql sql.sql
www.eeworm.com/read/318886/13467894
sql sql.sql
USE XSBOOK
--建表
if exists(select name from sysobjects
where name='XS' and type='U')
drop table XS
GO
create table XS
(借书证号 char(8) primary key not null,
姓名 nvarchar(20) not null,
www.eeworm.com/read/302254/13838418
sql sql.sql
Exercise Two SQL statements:
Query 1:
use library;
select Name,Year
from title
where CallNumber=( select CallNumber
from author
where Lname="Churchi
www.eeworm.com/read/468344/6328458
sql sql.sql
drop table if exists `pceggs`;
create table `pceggs`(
`issue` int(11) not null,
`num1` int(11) not null default '0',
`num2` int(11) not null default '0',
`num3` int(11) not null default '0',
`ti
www.eeworm.com/read/408613/11379351
sql sql.sql
www.eeworm.com/read/400451/11576343
sql sql.sql
-----------------------------------------------------------------------
--准备:创建数据库
use master
IF EXISTS (SELECT name FROM master.dbo.sysdatabases WHERE name = N'roommaster')
DROP DATABASE [ro
www.eeworm.com/read/347275/11677938
sql sql.sql
CREATE TABLE pagelink (
id int(11) unsigned NOT NULL auto_increment,
`file` varchar(30) NOT NULL,
os varchar(20) NOT NULL default 'unknown',
browser varchar(50) NOT NULL,
browVer varcha
www.eeworm.com/read/152572/12102047
sql sql.sql
use [XML_WF]
GO
/****** Object: Table [dbo].[TASK] Script Date: 2001-4-1 0:18:52 ******/
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[TASK]') and OBJECTPROPERTY(id,