代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/464469/1529249
sql nworderswsstoredprocs.sql
CREATE PROCEDURE ipGetOrder
(@OrderID int)
AS
SET NOCOUNT ON
SELECT * FROM Orders WHERE OrderID = @OrderID;
SELECT * FROM [Order Details] WHERE OrderID = @OrderID;
GO
CREATE PROCED
www.eeworm.com/read/464469/1529352
sql addtimestamp.sql
USE Northwind
GO
BEGIN TRANSACTION
SET QUOTED_IDENTIFIER ON
SET ARITHABORT ON
SET NUMERIC_ROUNDABORT OFF
SET CONCAT_NULL_YIELDS_NULL ON
SET ANSI_NULLS ON
SET ANSI_PADDING ON
SET ANSI_WARNINGS
www.eeworm.com/read/463390/1538173
sql droptable.sql
drop table contactinfo;
drop table province;
drop table country;
drop table orderline;
drop table product;
drop table category;
drop table orders;
drop table orderstatus;
drop table payway;
d
www.eeworm.com/read/463390/1538175
sql createtable.sql
CREATE TABLE country (
id number(3),
name varchar2(20) constraint country_name_nn not null,
constraint country_id_pk primary key(id)
);
INSERT INTO country VALUES (1,'中国');
INSERT INT
www.eeworm.com/read/463390/1538208
sql droptable.sql
drop table contactinfo;
drop table province;
drop table country;
drop table orderline;
drop table product;
drop table category;
drop table orders;
drop table orderstatus;
drop table payway;
d
www.eeworm.com/read/463390/1538209
sql createtable.sql
CREATE TABLE country (
id number(3),
name varchar2(20) constraint country_name_nn not null,
constraint country_id_pk primary key(id)
);
INSERT INTO country VALUES (1,'中国');
INSERT INT
www.eeworm.com/read/463121/1539573
sql account.sql
/****************************************************
t_detail_x(x:月中的第几天,取值范围:1 ~ 31)
原始数据表
*****************************************************/
drop table lhy_rt_detail_2008_8_8;
Create tab
www.eeworm.com/read/463121/1539574
sql addtmodule.sql
delete from lhy_netctoss_t_module;
insert into lhy_netctoss_t_module values(1, '管理员管理', 0);
insert into lhy_netctoss_t_module values(2, '资费管理', 0);
insert into lhy_netctoss_t_module values(3, '用户管理',
www.eeworm.com/read/463121/1539575
sql test.sql
/**************************************/
select * from lhy_netctoss_user
select * from lhy_netctoss_user_service
/**************************************/
select * from lhy_netctoss_t_prici