代码搜索:Numeric
找到约 7,754 项符合「Numeric」的源代码
代码结果 7,754
www.eeworm.com/read/488556/6489518
sql 应付折算本位币_proc.sql
IF EXISTS (SELECT NAME FROM SYSOBJECTS WHERE NAME='应付折算本位币_PROC' AND TYPE='P')
DROP PROC 应付折算本位币_PROC
GO
create PROC 应付折算本位币_PROC
AS
CREATE TABLE [#应付明细本位币]
(
[供应商编码] [varchar] (10) ,
[采购
www.eeworm.com/read/488556/6489522
sql 物料主文件_proc.sql
if exists(select name from sysobjects where name='物料主文件_PROC' and type= 'p')
drop PROC 物料主文件_PROC
GO
CREATE PROC 物料主文件_PROC
@从物料 VARCHAR(30),
@到物料 VARCHAR(30)
AS
CREATE TABLE [#物料主文件_基本] (
www.eeworm.com/read/486101/6543523
h ukf_comman_head.h
#pragma once
/********************************************************************
created: 2008/01/03
created: 3:1:2008 15:39
filename: C:\Documents and Settings\GaoYang\Local Settings\Temp
www.eeworm.com/read/484495/6577893
txt 表.txt
CREATE TABLE "jksoft"."jktable" ("db_id" integer NOT NULL DEFAULT NULL, "dbeng" varchar(20) NOT NULL DEFAULT NULL, "dbchin" varchar(40) NOT NULL DEFAULT NULL, "dbtype" smallint NOT NULL DEFAULT NULL,
www.eeworm.com/read/484495/6578084
txt xx.txt
CREATE TABLE "jksoft"."jktable"
("db_id" integer NOT NULL DEFAULT NULL, //ID
"dbeng" varchar(20) NOT NULL DEFAULT NULL, //英文名称
"dbchin" varchar(40) NOT NULL DEFAULT NULL, //中文名称
"d
www.eeworm.com/read/478650/6712625
m ex0307.m
%符号变量与数值变量进行转换
a1=sym('2*sqrt(5)+pi')
b1=double(a1) %转换为数值变量
a2=vpa(sym('2*sqrt(5)+pi'),32)
b2=numeric(a2) %转换为数值变量
b3=eval(a1)
whos
www.eeworm.com/read/409774/11312061
txt 表结构.txt
if exists (select * from sysobjects where id = object_id(N'[dbo].[ShopSaleReportBase]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[ShopSaleReportBase]
GO
CREATE TABLE [dbo].[Sh
www.eeworm.com/read/405333/11465050
cpp inputwidth.cpp
//: C04:InputWidth.cpp
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2003 MindView, Inc.
// Available at www.BruceEckel.com.
// Shows limitations of setw
www.eeworm.com/read/158370/11623067
cpp 5iii.cpp
// Sort3() Place three parameters into numerical order
// IN/OUT: x, y, z are any values. Upon return, they
// will be in numeric sequence
void Sort3 (float& x, float& y, float& z)
{ if (x > y)