代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/435596/7789687
sql favorite.sql
USE [BookShop]
GO
/****** 对象: Trigger [dbo].[favorite] 脚本日期: 12/14/2008 11:11:14 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
alter trigger [dbo].[favorite]
on [dbo].[OrderCont
www.eeworm.com/read/435273/7794606
sql db.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[log_SimCard_Send]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[log_SimCard_Send]
GO
CREATE TABLE [dbo].[lo
www.eeworm.com/read/435076/7797652
gif sql.gif
www.eeworm.com/read/434958/7799799
sql student.sql
create table student
(学号 char(10) not null,
姓名 char(16),
性别 char(2),
出生日期 datetime,
籍贯 char(10),
专业 char(20),
班号 char(10))
www.eeworm.com/read/434958/7799809
sql degree.sql
create table degree
(学号 char(10) not null,
姓名 char(16),
课程 char(20),
分数 int,
班号 char(10) not null)
www.eeworm.com/read/434958/7799813
sql oper.sql
create table oper
(用户名 char(10),
口令 char(6),
级别 char(10))
www.eeworm.com/read/297223/7800349