代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/177255/5330821
sql base.sql
#
# Table structure for table 'auth_user_md5'
#
CREATE TABLE auth_user_md5 (
user_id varchar(32) DEFAULT '' NOT NULL,
username varchar(32) DEFAULT '' NOT NULL,
password varchar(32) DEFAULT '' NO
www.eeworm.com/read/177255/5330929
sql tax.sql
CREATE TABLE tax_rate (
tax_rate_id int(11) NOT NULL auto_increment,
vendor_id int(11),
tax_state varchar(64),
tax_country varchar(64),
tax_rate decimal(10,4),
mdate int,
PRIMARY
www.eeworm.com/read/177052/5333610
sql createprocedures.sql
USE Northwind
SET nocount on
GO
IF db_name() 'Northwind'
RAISERROR('Database Northwind not found', 22, 1) WITH LOG
GO
IF object_id('procModifyProductInfo') is not null
DROP PROCEDU
www.eeworm.com/read/177052/5333611
sql createtables.sql
DROP TABLE Products
GO
DROP TABLE Categories
GO
CREATE TABLE Categories
( CategoryID integer not null primary key
, CategoryName nchar(20) not null
)
GO
CREATE TABLE Products
( Produ
www.eeworm.com/read/177052/5333612
sql getrelationships.sql
--***
--*** SQL Server CE version.
--***
SELECT C.CONSTRAINT_NAME
, C.REFERENCED_TABLE_NAME
, C.REFERENCED_COLUMN_NAME
, C.TABLE_NAME
, C.CONSTRAINT_COLUMN_NAME
FROM MSy
www.eeworm.com/read/177052/5333613
sql getproducts.sql
SELECT P.ProductID as 'ID'
, P.ProductName as 'Name'
, C.CategoryName as 'Category'
FROM Products P
JOIN Categories C on C.CategoryID = P.CategoryID
www.eeworm.com/read/177052/5333615
sql gettablenames.sql
SELECT TABLE_NAME
FROM Information_Schema.TABLES
WHERE TABLE_TYPE = 'TABLE'
www.eeworm.com/read/176373/5338281
sql table.sql
CREATE TABLE [dbo].[SQCLUB] (
[ID] [int] IDENTITY (1, 1) NOT FOR REPLICATION NOT NULL ,
[MC] [varchar] (40) COLLATE Chinese_PRC_CI_AS NOT NULL ,
[followid] [int] NOT NULL ,
[BM] [varchar] (40) CO
www.eeworm.com/read/173566/5370050
sql cdstore.sql
# EMS MySQL Manager Pro 3.2.0.1
# ---------------------------------------
# Host : localhost
# Port : 3306
# Database : cdstore
SET FOREIGN_KEY_CHECKS=0;
CREATE DATABASE `cdstore`
www.eeworm.com/read/173141/5378392
sql iepnegativetests.sql
--testing error cases for import/export
create schema iep;
create table iep.t1(a int);
insert into iep.t1 values(100) , (101) , (102) , (103) , (104) , (105) , (106);
--export error cases
--export can