代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/463345/7182900
sql infoprocsystem.sql
www.eeworm.com/read/463340/7182973
sql stockinfo.sql
www.eeworm.com/read/463334/7183063
sql setsql.sql
www.eeworm.com/read/463086/7187779
sql uninstall.sql
/*Delete Indexing Service Linked Server*/
if exists (SELECT srvname FROM master.dbo.sysservers WHERE srvname = 'AccuFlow_IndexingSrv')
EXEC sp_dropserver @server='AccuFlow_IndexingSrv', @droplogin
www.eeworm.com/read/463086/7187780
sql accuflow.sql
/*Delete Indexing Service Linked Server*/
if exists (SELECT srvname FROM master.dbo.sysservers WHERE srvname = 'AccuFlow_IndexingSrv')
EXEC sp_dropserver @server='AccuFlow_IndexingSrv', @droplogin
www.eeworm.com/read/462859/7193963
sql cmsdb.sql
create database cms
go
use cms
go
create table userinfo(
[user] char(10) primary key not null,
pass char(10) not null)
go
insert into userinfo
values('admin','admin')
go
create table contra
www.eeworm.com/read/462803/7195866
sql lab.sql
create database lab;
use lab;
create table student
(
id int primary key auto_increment,
number char(10),
name char(20),
sex char(4),
birthday char(10),
dnum char(20),
college char(20),
www.eeworm.com/read/462561/7200299
sql personnel.sql
www.eeworm.com/read/462531/7200585
sql employeeinformationmsok.sql
CREATE DATABASE EmployeeInformationMS
--DROP DATABASE EmployeeInformationMS
go
USE EmployeeInformationMS
go
/*用户信息表*/
CREATE TABLE UserInformation
(
User_ID INT IDENTITY(1,1),
Us
www.eeworm.com/read/462479/7201053
sql createflowtabletobackdbasyear.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[WorkFlowInstance1]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[WorkFlowInstance1]
GO
if exists (select * fr