代码搜索:Numeric
找到约 7,754 项符合「Numeric」的源代码
代码结果 7,754
www.eeworm.com/read/144084/5753293
sql q_totaldstcost.sql
-- Report per-destination cost over a specified time period
-- Adjust the period using BETWEEN clause (you can also use
-- AND acctstarttime >= (now() - '2 days'::INTERVAL))
SELECT tariffdesc AS "Des
www.eeworm.com/read/144084/5753329
sql c_voipcall_trig.sql
-- Trigger procedures for voipcall pre- and postprocessing
--
-- VoIP Billing Platform for GnuGk
-- Copyright (c) 2004, Michal Zygmuntowicz
--
-- This work is published under the GNU Public License (G
www.eeworm.com/read/129064/5975224
sql db.sql
create table emp
(
no numeric(12) not null,
upd_ts timestamp not null,
name char(20) not null,
duty char(1) not null,
age numeric(6) not null,
salary numeric(12,2) not
www.eeworm.com/read/101082/6245998
3 ecvt.3
.\" SCCSID: @(#)ecvt.3 2.4 8/10/87
.TH ecvt 3
.SH Name
ecvt, fcvt, gcvt \- output conversion
.SH Syntax
.nf
.B char *ecvt(\fIvalue, ndigit, decpt, sign\fP)
.B double value;
.B int \fIndigit, *decpt,
www.eeworm.com/read/101082/6247854
3 ecvt.3
.\" SCCSID: @(#)ecvt.3 2.4 8/10/87
.TH ecvt 3
.SH Name
ecvt, fcvt, gcvt \- output conversion
.SH Syntax
.nf
.B char *ecvt(\fIvalue, ndigit, decpt, sign\fP)
.B double value;
.B int \fIndigit, *decpt,
www.eeworm.com/read/489609/6466686
r stdize.r
### stdize.R: Standardization by centering and scaling
###
### $Id: stdize.R 89 2006-09-20 15:41:09Z bhm $
## This is a somewhat modified version of scale.default
stdize
www.eeworm.com/read/488556/6489476
sql 销售明细_物料_proc.sql
IF EXISTS(SELECT NAME FROM SYSOBJECTS WHERE NAME='销售明细_物料_PROC' AND TYPE='P')
DROP PROC 销售明细_物料_PROC
GO
CREATE PROC 销售明细_物料_PROC
@item_TO varchar(30),
@item_fr varchar(30),
@TYPE CHAR(5)
AS
C
www.eeworm.com/read/488556/6489487
sql 销售明细_订单_proc.sql
IF EXISTS(SELECT NAME FROM SYSOBJECTS WHERE NAME='销售明细_订单_PROC' AND TYPE='P')
DROP PROC 销售明细_订单_PROC
GO
CREATE PROC 销售明细_订单_PROC
@CO_TO INT,
@CO_fr INT,
@TYPE CHAR(5)
AS
CREATE TABLE [#销售订单明细
www.eeworm.com/read/488556/6489494
sql 销售明细_客户_proc.sql
IF EXISTS(SELECT NAME FROM SYSOBJECTS WHERE NAME='销售明细_客户_PROC' AND TYPE='P')
DROP PROC 销售明细_客户_PROC
GO
CREATE PROC 销售明细_客户_PROC
@CUST_TO VARCHAR(10),
@CUST_FR VARCHAR(10),
@TYPE CHAR(5)
AS
C
www.eeworm.com/read/264287/11323220
ned genericrouter.ned
//-------------------------------
// File: genericRouter.ned
// This is a simple simulation program whose purpose is just
// to get a know how antNet algorithm works
//----------------------------