代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/359443/10146741
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/163538/10154524
sql secretdb.sql
CREATE TABLE users (
id tinyint(10) NOT NULL,
real_name varchar(255) NOT NULL,
username varchar(10) NOT NULL,
password varchar(10) NOT NULL,
email varchar(50) NOT NULL
);
www.eeworm.com/read/163500/10156900
sql ticket.sql
www.eeworm.com/read/359205/10161492
sql mylibrary.sql
www.eeworm.com/read/163351/10165281
txt sql.txt
if exists (select * from sysobjects where id = object_id(N'[dbo].[Din]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Din]
GO
CREATE TABLE [dbo].[Din] (
[Dinno] [nvarchar] (20)
www.eeworm.com/read/163325/10165961
sql storedprocedure.sql
-- ================================================
-- Template generated from Template Explorer using:
-- Create Procedure (New Menu).SQL
--
-- Use the Specify Values for Template Parameters
--
www.eeworm.com/read/359007/10171294
txt sql.txt
CREATE DATABASE `jspmo`;
CREATE TABLE `jspmo` (
`id` int(11) NOT NULL auto_increment,
`title` varchar(50) NOT NULL default '',
`name` varchar(20) default NULL,
`QQ` varchar(15) default
www.eeworm.com/read/358974/10172672
txt sql.txt
--应用类别
create table dm_application
(
id number not null , --ID号
application_name varchar2(100), --应用名称
constraint pk_dm_application primary