代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/468946/6982522
sql vehicle.sql
www.eeworm.com/read/469011/6983036
txt sql语句.txt
SELECT --从数据库表中检索数据行和列
INSERT --向数据库表添加新数据行
DELETE --从数据库表中删除数据行
UPDATE --更新数据库表中的数据
--数据定义
CREATE TABLE --创建一个数据库表
DROP TABLE --从数据库中删除表
ALTER TABLE --修改数据库表结构
CREATE VIEW --创建一个视图
www.eeworm.com/read/468581/6984515
sql ts.sql
www.eeworm.com/read/468581/6984631
sql new.sql
if exists (select * from sysobjects where id = object_id(N'[dbo].[sp_购货合同]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[sp_购货合同]
GO
if exists (select * from sysobjects wher
www.eeworm.com/read/468581/6984878
sql rs.sql
CREATE TABLE [dbo].[人事月预算] (
[ID] [int] NOT NULL ,
[工资] [real] NULL ,
[劳务费] [real] NULL ,
[养老保险费] [real] NULL ,
[大病统筹费] [real] NULL ,
[失业保险费] [real] NULL ,
[住房公积金] [real] NULL ,
[合计] [
www.eeworm.com/read/468635/6986103
sql mychatroom.sql
www.eeworm.com/read/468334/6988972
sql userreg.sql
create database UserReg
use UserReg;
create table users(
user_id int unsigned not null auto_increment,
first_name varchar(20) not null,
last_name varchar(40) not null,
email varchar(80) not
www.eeworm.com/read/468438/6989983
sql stop.sql
begin
dbms_alert.signal( 'WAITING', '' );
commit;
end;
/
www.eeworm.com/read/468438/6990005
sql runstats.sql
set echo on
drop table run_stats;
create global temporary table run_stats
( runid varchar2(15),
name varchar2(80),
value int )
on commit preserve rows;
grant select any table to ops$
www.eeworm.com/read/468438/6990006
sql mystat.sql
set echo off
set verify off
column value new_val V
define S="&1"
set autotrace off
select a.name, b.value
from v$statname a, v$mystat b
where a.statistic# = b.statistic#
and lower(a.name) l