USE [winformdevfarme] GO /****** Object: Table [dbo].[buyer] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[buyer]( [id] [int] IDENTITY(1,1) NOT NULL, [buyercode] [varchar](50) NULL, [buyerdate] [datetime] NULL, [supplierid] [int] NULL, [suppliercode] [varchar](50) NULL, [deliverdate] [datetime] NULL, [creatorId] [int] NULL, [totalprice] [decimal](18, 2) NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_buyer] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[buyerdetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[buyerdetail]( [id] [int] IDENTITY(1,1) NOT NULL, [buyerid] [int] NULL, [buyercode] [varchar](50) NULL, [requisitioncode] [varchar](50) NULL, [materialid] [int] NULL, [materialcode] [varchar](50) NULL, [materialspec] [varchar](200) NULL, [materialunit] [int] NULL, [buyernumber] [decimal](18, 5) NULL, [unitprice] [decimal](18, 2) NULL, [money] [decimal](18, 2) NULL, [warehouse] [int] NULL, [delivernumber] [decimal](18, 5) NULL, [returnnumber] [decimal](18, 5) NULL, [realdelivernumber] [decimal](18, 5) NULL, [nodelivernumber] [decimal](18, 5) NULL, [finishnumber] [decimal](18, 5) NULL, [nofinishnumber] [decimal](18, 5) NULL, [remark] [varchar](200) NULL, [buyerdetailcode] [varchar](50) NULL, CONSTRAINT [PK_buyerdetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[buyerInWarehouse] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[buyerInWarehouse]( [id] [int] IDENTITY(1,1) NOT NULL, [code] [varchar](50) NULL, [creatorId] [int] NULL, [supplierid] [int] NULL, [suppliercode] [varchar](50) NULL, [intime] [datetime] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_buyerInWarehouse] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[buyerInWarehouseDetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[buyerInWarehouseDetail]( [id] [int] IDENTITY(1,1) NOT NULL, [masterid] [int] NULL, [mastercode] [varchar](50) NULL, [detailcode] [varchar](50) NULL, [buyerdetailcode] [varchar](50) NULL, [buyercode] [varchar](50) NULL, [materialid] [int] NULL, [materialcode] [varchar](50) NULL, [materialspec] [varchar](200) NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_buyerInWarehouseDetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[buyerOutWarehouse] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[buyerOutWarehouse]( [id] [int] IDENTITY(1,1) NOT NULL, [code] [varchar](50) NULL, [outtime] [datetime] NULL, [supplierid] [int] NULL, [suppliercode] [varchar](50) NULL, [creatorId] [int] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_buyerOutWarehouse] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[buyerOutWarehouseDetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[buyerOutWarehouseDetail]( [id] [int] IDENTITY(1,1) NOT NULL, [masterid] [int] NULL, [mastercode] [varchar](50) NULL, [detailcode] [varchar](50) NULL, [buyerreturncode] [varchar](50) NULL, [buyerreturndetailcode] [varchar](50) NULL, [buyercode] [varchar](50) NULL, [buyerdetailcode] [varchar](50) NULL, [materialid] [int] NULL, [materialcode] [varchar](50) NULL, [materialspec] [varchar](200) NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_buyerOutWarehouseDetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[buyerreturn] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[buyerreturn]( [id] [int] IDENTITY(1,1) NOT NULL, [returndate] [datetime] NULL, [suppliercode] [varchar](50) NULL, [supplierid] [int] NULL, [creatorId] [int] NULL, [returnbuyercode] [varchar](50) NULL, [totalprice] [decimal](18, 2) NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_buyerreturn] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[buyerreturndetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[buyerreturndetail]( [id] [int] IDENTITY(1,1) NOT NULL, [buyerdetailcode] [varchar](50) NULL, [buyercode] [varchar](50) NULL, [materialcode] [varchar](50) NULL, [materialid] [int] NULL, [materialspec] [varchar](200) NULL, [returnnumber] [decimal](18, 5) NULL, [unit] [int] NULL, [unitprice] [decimal](18, 2) NULL, [money] [decimal](18, 2) NULL, [warehouse] [int] NULL, [returnbuyercode] [varchar](50) NULL, [returnbuyerdetailcode] [varchar](50) NULL, [remark] [varchar](200) NULL, [buyerreturnid] [int] NULL, CONSTRAINT [PK_buyerreturndetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[completionProductInWarehouse] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[completionProductInWarehouse]( [id] [int] IDENTITY(1,1) NOT NULL, [intime] [datetime] NULL, [dept] [int] NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [code] [varchar](50) NULL, CONSTRAINT [PK_completionProductInWarehouse] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[completionProductInWarehouseDetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[completionProductInWarehouseDetail]( [id] [int] IDENTITY(1,1) NOT NULL, [masterid] [int] NULL, [mastercode] [varchar](50) NULL, [detailcode] [varchar](50) NULL, [wocode] [varchar](50) NULL, [salecode] [varchar](50) NULL, [saledetailcode] [varchar](50) NULL, [productid] [int] NULL, [productcode] [varchar](50) NULL, [spec] [varchar](200) NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_completionProductInWarehouseDetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[customer] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[customer]( [id] [int] IDENTITY(1,1) NOT NULL, [customername] [varchar](50) NULL, [customertype] [int] NULL, [contactuser] [int] NULL, [phonenumber] [varchar](50) NULL, [address] [varchar](200) NOT NULL, [startreceipt] [decimal](18, 2) NULL, [customercode] [varchar](50) NULL, [totalreceivables] [decimal](18, 2) NULL, [totalamountsettled] [decimal](18, 2) NULL, [totaloutstandingamount] [decimal](18, 2) NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_customer] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[deliversale] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[deliversale]( [id] [int] IDENTITY(1,1) NOT NULL, [customerid] [int] NULL, [customercode] [varchar](50) NULL, [deliverdate] [datetime] NULL, [customertype] [int] NULL, [contactuser] [int] NULL, [deliveraddress] [varchar](200) NULL, [creatorId] [int] NULL, [deliversalecode] [varchar](50) NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_deliversale] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[deliversaledetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[deliversaledetail]( [id] [int] IDENTITY(1,1) NOT NULL, [deliversaleid] [int] NULL, [salecode] [varchar](50) NULL, [productname] [varchar](50) NULL, [productcode] [varchar](50) NULL, [productspec] [varchar](200) NULL, [warehouse] [int] NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [deliversalecode] [varchar](50) NULL, [remark] [varchar](200) NULL, [deliversaledetailcode] [varchar](50) NULL, CONSTRAINT [PK_deliversaledetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[finishProductInInWarehouse] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[finishProductInInWarehouse]( [id] [int] IDENTITY(1,1) NOT NULL, [intime] [datetime] NULL, [dept] [int] NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [code] [varchar](50) NULL, CONSTRAINT [PK_finishProductInInWarehouse] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[finishProductInInWarehouseDetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[finishProductInInWarehouseDetail]( [id] [int] IDENTITY(1,1) NOT NULL, [masterid] [int] NULL, [mastercode] [varchar](50) NULL, [completionProductInWarehouseCode] [varchar](50) NULL, [completionProductInWarehouseDetailCode] [varchar](50) NULL, [detailcode] [varchar](50) NULL, [wocode] [varchar](50) NULL, [salecode] [varchar](50) NULL, [saledetailcode] [varchar](50) NULL, [productid] [int] NULL, [productcode] [varchar](50) NULL, [productspec] [varchar](200) NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_finishProductInInWarehouseDetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[gupiaorecord] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[gupiaorecord]( [id] [int] IDENTITY(1,1) NOT NULL, [code] [varchar](50) NULL, [name] [varchar](50) NULL, [turnover] [decimal](18, 2) NULL, [amount] [decimal](18, 4) NULL, [gettime] [datetime] NULL, CONSTRAINT [PK_gupiaorecord] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[lottery] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[lottery]( [id] [int] IDENTITY(1,1) NOT NULL, [red1] [int] NULL, [red2] [int] NULL, [red3] [int] NULL, [red4] [int] NULL, [red5] [int] NULL, [red6] [int] NULL, [blue] [int] NULL, CONSTRAINT [PK_lottery] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[material] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[material]( [id] [int] IDENTITY(1,1) NOT NULL, [name] [varchar](50) NULL, [code] [varchar](50) NULL, [spec] [varchar](50) NULL, [unit] [int] NULL, [referprice] [decimal](18, 2) NULL, [materialtype] [int] NULL, [warehouse] [int] NULL, [POinnumber] [decimal](18, 5) NULL, [salereturnnumber] [decimal](18, 5) NULL, [YDProductConsume] [decimal](18, 5) NULL, [productmaterialreturn] [decimal](18, 5) NULL, [stocknumber] [decimal](18, 5) NULL, [stockwarnnumber] [decimal](18, 5) NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_material] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[product] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[product]( [id] [int] IDENTITY(1,1) NOT NULL, [productmal(] [varchar](50) NULL, [spec] [varchar](50) NULL, [defaultprice] [decimal](18, 2) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [producttype] [int] NULL, [productcode] [varchar](50) NULL, [stocknumber] [decimal](18, 5) NULL, [startnumber] [decimal](18, 5) NULL, [startprice] [decimal](18, 2) NULL, [productinnumber] [decimal](18, 5) NULL, [saleoutnumber] [decimal](18, 5) NULL, [customerreturnnumber] [decimal](18, 5) NULL, [stockwarnnumber] [decimal](18, 5) NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [editorId] [int] NULL, [editTime] [datetime] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_product] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[productBOM] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[productBOM]( [id] [int] IDENTITY(1,1) NOT NULL, [customerid] [int] NULL, [customercode] [varchar](50) NULL, [productcode] [varchar](50) NULL, [productid] [int] NULL, [spec] [varchar](200) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [version] [nvarchar](50) NULL, [productBOMcode] [varchar](50) NULL, [remark] [varchar](200) NULL, [unitcost] [decimal](18, 2) NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [editorId] [int] NULL, [editTime] [datetime] NULL, CONSTRAINT [PK_productBOM] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[productBOMdetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[productBOMdetail]( [id] [int] IDENTITY(1,1) NOT NULL, [pid] [int] NULL, [productBOMid] [int] NULL, [productBOMcode] [varchar](50) NULL, [productcode] [varchar](50) NULL, [materialid] [int] NULL, [materialname] [varchar](50) NULL, [materialcode] [varchar](50) NULL, [materialspec] [varchar](200) NULL, [materialtype] [int] NULL, [unitusenumber] [decimal](18, 5) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [unitprice] [decimal](18, 2) NULL, [money] [decimal](18, 2) NULL, [remark] [varchar](200) NULL, [productBOMdetailcode] [varchar](50) NULL, CONSTRAINT [PK_productBOMdetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[productionBOM] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[productionBOM]( [id] [int] IDENTITY(1,1) NOT NULL, [projectBOMcode] [varchar](50) NULL, [productionBOMcode] [varchar](50) NULL, [number] [decimal](18, 5) NULL, [materialcode] [varchar](50) NULL, [materialid] [int] NULL, [spec] [varchar](200) NULL, [materialtype] [int] NULL, [uintnumber] [decimal](18, 5) NULL, [neednumber] [decimal](18, 5) NULL, [unit] [int] NULL, [unitprice] [decimal](18, 2) NULL, [totalprice] [decimal](18, 2) NULL, [warehouse] [int] NULL, [remark] [varchar](500) NULL, CONSTRAINT [PK_productionBOM] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[productionMaterialReturn] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[productionMaterialReturn]( [id] [int] IDENTITY(1,1) NOT NULL, [code] [varchar](50) NULL, [returntime] [datetime] NULL, [returndept] [int] NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, CONSTRAINT [PK_productionMaterialReturn] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[productionMaterialReturnDetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[productionMaterialReturnDetail]( [id] [int] IDENTITY(1,1) NOT NULL, [masterid] [int] NULL, [mastercode] [varchar](50) NULL, [detailcode] [varchar](50) NULL, [pickcode] [varchar](50) NULL, [wocode] [varchar](50) NULL, [materialid] [int] NULL, [materialcode] [varchar](50) NULL, [materialspec] [varchar](200) NULL, [reason] [varchar](200) NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [remark] [varchar](200) NULL, [pickdetailcode] [varchar](50) NULL, CONSTRAINT [PK_productionMaterialReturnDetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[productionRequisition] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[productionRequisition]( [id] [int] IDENTITY(1,1) NOT NULL, [code] [varchar](50) NULL, [wocode] [varchar](50) NULL, [salecode] [varchar](50) NULL, [pickingtime] [datetime] NULL, [productID] [int] NULL, [productcode] [varchar](50) NULL, [productspec] [varchar](200) NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [pickingdept] [int] NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_productionRequisition] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[productionRequisitionDetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[productionRequisitionDetail]( [id] [int] IDENTITY(1,1) NOT NULL, [masterid] [int] NULL, [mastercode] [varchar](50) NULL, [detailcode] [varchar](50) NULL, [materialid] [int] NULL, [materialcode] [varchar](50) NULL, [materialspec] [varchar](200) NULL, [materialtype] [int] NULL, [unitnumber] [decimal](18, 5) NULL, [productnumber] [decimal](18, 5) NULL, [picknumber] [decimal](18, 5) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [remark] [varchar](200) NULL, [wocode] [varchar](50) NULL, CONSTRAINT [PK_productionRequisitionDetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[productMaterialInWarehouse] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[productMaterialInWarehouse]( [id] [int] IDENTITY(1,1) NOT NULL, [code] [varchar](50) NULL, [intime] [datetime] NULL, [dept] [int] NULL, [creatorId] [int] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_productMaterialInWarehouse] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[productMaterialInWarehouseDetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[productMaterialInWarehouseDetail]( [id] [int] IDENTITY(1,1) NOT NULL, [masterid] [int] NULL, [masercode] [varchar](50) NULL, [detailcode] [varchar](50) NULL, [productionMaterialReturnCode] [varchar](50) NULL, [productionMaterialReturnDetailCode] [varchar](50) NULL, [materialid] [int] NULL, [materialcode] [varchar](50) NULL, [materialspec] [varchar](200) NULL, [reason] [varchar](200) NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [wocode] [varchar](50) NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_productMaterialInWarehouseDetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[productMaterialOutWarehouse] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[productMaterialOutWarehouse]( [id] [int] IDENTITY(1,1) NOT NULL, [code] [varchar](50) NULL, [dept] [int] NULL, [outtime] [datetime] NULL, [creatorId] [int] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_productMaterialOutWarehouse] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[productMaterialOutWarehouseDetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[productMaterialOutWarehouseDetail]( [id] [int] IDENTITY(1,1) NOT NULL, [masterid] [int] NULL, [mastercode] [varchar](50) NULL, [detailcode] [varchar](50) NULL, [pickcode] [varchar](50) NULL, [pickdetailcode] [varchar](50) NULL, [wocode] [varchar](50) NULL, [materialid] [int] NULL, [materialcode] [varchar](50) NULL, [materialspec] [varchar](200) NULL, [materialtype] [int] NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_productOut] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[quotation] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[quotation]( [id] [int] IDENTITY(1,1) NOT NULL, [customerid] [int] NULL, [quotationdate] [datetime] NULL, [customercode] [varchar](50) NULL, [customertype] [int] NULL, [customeruser] [int] NULL, [creatorId] [int] NULL, [deliveraddress] [varchar](50) NULL, [quotationcode] [varchar](50) NULL, [remark] [varchar](200) NULL, [totalprice] [decimal](18, 2) NULL, CONSTRAINT [PK_quotation] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[quotationdetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[quotationdetail]( [id] [int] IDENTITY(1,1) NOT NULL, [productname] [varchar](50) NULL, [productid] [int] NULL, [spec] [varchar](50) NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [unitprice] [decimal](18, 2) NULL, [money] [decimal](18, 2) NULL, [stockid] [int] NULL, [productcode] [varchar](50) NULL, [quotationcode] [varchar](50) NULL, [quotationid] [int] NULL, [remark] [varchar](200) NULL, [quotationdetailcode] [varchar](50) NULL, CONSTRAINT [PK_quotationdetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[requisition] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[requisition]( [id] [int] IDENTITY(1,1) NOT NULL, [requisitioncode] [varchar](50) NULL, [deptid] [int] NULL, [requisitiondate] [datetime] NULL, [deliverdate] [datetime] NULL, [creatorId] [int] NULL, [totalprice] [decimal](18, 2) NULL, [remark] [decimal](18, 2) NOT NULL, CONSTRAINT [PK_requisition] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[requisitiondetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[requisitiondetail]( [id] [int] IDENTITY(1,1) NOT NULL, [requisitionid] [int] NULL, [requisitioncode] [varchar](50) NULL, [materialid] [int] NULL, [materialcode] [varchar](50) NULL, [materialspec] [varchar](200) NULL, [materialunit] [int] NULL, [requisitionnumber] [decimal](18, 5) NULL, [unitprice] [decimal](18, 2) NULL, [money] [decimal](18, 2) NULL, [warehouse] [int] NULL, [remark] [varchar](200) NULL, [requisitiondetailcode] [varchar](50) NULL, CONSTRAINT [PK_requisitiondetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[returnsale] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[returnsale]( [id] [int] IDENTITY(1,1) NOT NULL, [returndate] [datetime] NULL, [customercode] [varchar](50) NULL, [customerid] [int] NULL, [customertype] [int] NULL, [contactuser] [int] NULL, [contactphone] [varchar](50) NULL, [creatorId] [int] NULL, [returnsalecode] [varchar](50) NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_returnsale] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[returnsaledetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[returnsaledetail]( [id] [int] IDENTITY(1,1) NOT NULL, [returnsaleid] [int] NULL, [returnsalecode] [varchar](50) NULL, [deliversalecode] [varchar](50) NULL, [salecode] [varchar](50) NULL, [productcode] [varchar](50) NULL, [productname] [varchar](50) NULL, [productspec] [varchar](200) NULL, [warehouse] [int] NULL, [returnnumber] [decimal](18, 5) NULL, [unit] [int] NULL, [remark] [varchar](200) NULL, [returnsaledetailcode] [varchar](50) NULL, CONSTRAINT [PK_returnsaledetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sale] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[sale]( [id] [int] IDENTITY(1,1) NOT NULL, [saleordercode] [varchar](50) NULL, [orderdate] [datetime] NULL, [customerid] [int] NULL, [customercode] [varchar](50) NULL, [customertype] [int] NULL, [customerordercode] [varchar](50) NULL, [contactuser] [int] NULL, [contactphone] [varchar](50) NULL, [deliveraddress] [varchar](200) NULL, [salesman] [int] NULL, [finishdate] [datetime] NULL, [creatorId] [int] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_sale] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[saledetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[saledetail]( [id] [int] IDENTITY(1,1) NOT NULL, [productid] [int] NULL, [productspec] [varchar](100) NULL, [salenumber] [decimal](18, 5) NULL, [unit] [int] NULL, [unitprice] [decimal](18, 2) NULL, [money] [decimal](18, 2) NULL, [deliverdate] [datetime] NULL, [warehouse] [int] NULL, [readynumber] [decimal](18, 5) NULL, [noreadynumber] [decimal](18, 5) NULL, [finishnumber] [decimal](18, 5) NULL, [outnumber] [decimal](18, 5) NULL, [returnnumber] [decimal](18, 5) NULL, [nodelivernumber] [decimal](18, 5) NULL, [delivernumber] [decimal](18, 5) NULL, [closenumber] [decimal](18, 5) NULL, [noclosenumber] [decimal](18, 5) NULL, [materialcost] [decimal](18, 5) NULL, [realmaterialcost] [decimal](18, 5) NULL, [productcode] [varchar](50) NULL, [saleid] [int] NULL, [salecode] [varchar](50) NULL, [saledetailcode] [varchar](50) NULL, CONSTRAINT [PK_saledetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[saleInWarehouse] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[saleInWarehouse]( [id] [int] IDENTITY(1,1) NOT NULL, [inTime] [datetime] NULL, [dept] [int] NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [code] [varchar](50) NULL, CONSTRAINT [PK_saleInWarehouse] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[saleInWarehouseDetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[saleInWarehouseDetail]( [id] [int] IDENTITY(1,1) NOT NULL, [returnsalecode] [varchar](50) NULL, [returnsaledetailcode] [varchar](50) NULL, [mastercode] [varchar](50) NULL, [detailcode] [varchar](50) NULL, [salecode] [varchar](50) NULL, [saledetailcode] [varchar](50) NULL, [productID] [int] NULL, [productcode] [varchar](50) NULL, [spec] [varchar](200) NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [remark] [varchar](200) NULL, [masterid] [int] NULL, CONSTRAINT [PK_saleInWarehouseDetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[saleOutWarehouse] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[saleOutWarehouse]( [id] [int] IDENTITY(1,1) NOT NULL, [code] [varchar](50) NULL, [outtime] [datetime] NULL, [dept] [int] NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_saleOutWarehouse] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[saleOutWarehouseDetail] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[saleOutWarehouseDetail]( [id] [int] IDENTITY(1,1) NOT NULL, [masterid] [int] NULL, [mastercode] [varchar](50) NULL, [detailcode] [varchar](50) NULL, [saledelivercode] [varchar](50) NULL, [saledeliverdetailcode] [varchar](50) NULL, [salecode] [varchar](50) NULL, [saledetailcode] [varchar](50) NULL, [productid] [int] NULL, [productcode] [varchar](50) NULL, [spec] [varchar](50) NULL, [number] [decimal](18, 5) NULL, [unit] [int] NULL, [warehouse] [int] NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_saleOutWarehouseDetail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[stock] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[stock]( [id] [int] IDENTITY(1,1) NOT NULL, [name] [varchar](50) NULL, [address] [varchar](200) NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_stock] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[stockData] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[stockData]( [code] [varchar](50) NOT NULL, [name] [varchar](50) NULL, [startPrice] [decimal](10, 2) NULL, [olePrice] [decimal](10, 2) NULL, [nowPrice] [decimal](10, 2) NULL, [maxPrice] [decimal](10, 2) NULL, [minPrice] [decimal](10, 2) NULL, [bidderPrice] [decimal](10, 2) NULL, [auctionPrice] [decimal](10, 2) NULL, [turnover] [int] NULL, [turnoverPrice] [decimal](18, 2) NULL, [buyOneNum] [int] NULL, [buyOnePrice] [decimal](10, 2) NULL, [buyTwoNum] [int] NULL, [buyTwoPrice] [decimal](10, 2) NULL, [buyThreeNum] [int] NULL, [buyThreePrice] [decimal](10, 2) NULL, [buyFourNum] [int] NULL, [buyFourPrice] [decimal](10, 2) NULL, [buyFiveNum] [int] NULL, [buyFivePrice] [decimal](10, 2) NULL, [sellOneNum] [int] NULL, [sellOnePrice] [decimal](10, 2) NULL, [sellTwoNum] [int] NULL, [sellTwoPrice] [decimal](10, 2) NULL, [sellThreeNum] [int] NULL, [sellThreePrice] [decimal](10, 2) NULL, [sellFourNum] [int] NULL, [sellFourPrice] [decimal](10, 2) NULL, [sellFiveNum] [int] NULL, [sellFivePrice] [decimal](10, 2) NULL, [timeStr] [datetime] NULL, [id] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_stockData] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[supplier] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[supplier]( [id] [int] IDENTITY(1,1) NOT NULL, [suppliername] [varchar](50) NULL, [manufacturertype] [int] NULL, [contacts] [int] NULL, [address] [varchar](200) NULL, [vatrate] [decimal](10, 4) NULL, [taxpayeridentity] [varchar](100) NULL, [bankaccount] [varchar](50) NULL, [suppliercode] [varchar](50) NULL, [payments] [decimal](18, 2) NULL, [totalamountsettled] [decimal](18, 2) NULL, [totaloutstandingamount] [decimal](18, 2) NULL, [remark] [varchar](200) NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [editorId] [int] NULL, [editTime] [datetime] NULL, CONSTRAINT [PK_supplier] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sysDataBase] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[sysDataBase]( [name] [varchar](50) NOT NULL, [serverip] [varchar](50) NULL, [databasename] [varchar](50) NULL, [connecturl] [varchar](200) NULL, [username] [varchar](20) NULL, [passsword] [varchar](50) NULL, CONSTRAINT [PK_sysDataBase1] PRIMARY KEY CLUSTERED ( [name] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sysDataTable] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[sysDataTable]( [DataTableName] [varchar](50) NOT NULL, [DataTableSql] [varchar](max) NULL, [DataTableUrl] [varchar](500) NULL, [DataSourceName] [varchar](200) NULL, CONSTRAINT [PK_sysDataTable] PRIMARY KEY CLUSTERED ( [DataTableName] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sysDept] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[sysDept]( [id] [int] IDENTITY(1,1) NOT NULL, [pid] [int] NULL, [name] [varchar](50) NULL, [address] [varchar](200) NULL, [phone] [varchar](50) NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [editorId] [int] NULL, [editTime] [datetime] NULL, CONSTRAINT [PK_sysDept] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sysDictData] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[sysDictData]( [id] [int] IDENTITY(1,1) NOT NULL, [dictTypeID] [int] NULL, [code] [varchar](50) NULL, [value] [varchar](200) NULL, [remark] [nchar](500) NULL, [sort] [varchar](50) NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [editorId] [int] NULL, [editTime] [datetime] NULL, CONSTRAINT [PK_sysDictData] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sysDictType] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[sysDictType]( [id] [int] IDENTITY(1,1) NOT NULL, [pid] [int] NULL, [name] [varchar](50) NULL, [sort] [varchar](50) NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [editorId] [int] NULL, [editTime] [datetime] NULL, [remark] [varchar](500) NULL, CONSTRAINT [PK_sysDictType] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sysFunction] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[sysFunction]( [id] [int] IDENTITY(1,1) NOT NULL, [pid] [int] NOT NULL, [name] [varchar](50) NULL, [functionCode] [varchar](50) NULL, [toolBtnID] [int] NULL, CONSTRAINT [PK_sysFunction] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sysMenu] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[sysMenu]( [id] [int] IDENTITY(1,1) NOT NULL, [pid] [int] NULL, [name] [varchar](50) NULL, [icon] [varchar](200) NULL, [winformType] [varchar](200) NULL, [sort] [varchar](50) NULL, [isEnabled] [bit] NULL, [toolList] [varchar](200) NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [editorId] [int] NULL, [editTime] [datetime] NULL, [isForm] [bit] NULL, [isToolBtn] [bit] NULL, [functionCode] [varchar](50) NULL, CONSTRAINT [PK_sysMenu] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sysRole] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[sysRole]( [id] [int] IDENTITY(1,1) NOT NULL, [companyId] [int] NULL, [companyName] [varchar](50) NULL, [name] [varchar](50) NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [editorId] [int] NULL, [editTime] [datetime] NULL, CONSTRAINT [PK_sysRole] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sysRoleFunction] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[sysRoleFunction]( [roleId] [int] NULL, [functionId] [int] NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[sysToolButton] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[sysToolButton]( [id] [int] IDENTITY(1,1) NOT NULL, [btnName] [varchar](50) NULL, [btnCode] [varchar](50) NULL, [btnIcon] [varchar](200) NULL, [remark] [varchar](200) NULL, CONSTRAINT [PK_sysToolButton] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sysUser] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[sysUser]( [id] [int] IDENTITY(1,1) NOT NULL, [account] [varchar](50) NULL, [username] [varchar](50) NULL, [password] [varchar](50) NULL, [email] [varchar](50) NULL, [mobilephone] [varchar](50) NULL, [deptId] [int] NULL, [isEnabled] [bit] NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [editorId] [int] NULL, [editTime] [datetime] NULL, CONSTRAINT [PK_sysUser] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[sysUserRole] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[sysUserRole]( [userId] [int] NULL, [roleId] [int] NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[workorder] Script Date: 2021/7/22 11:59:54 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[workorder]( [id] [int] IDENTITY(1,1) NOT NULL, [wordordercode] [varchar](50) NULL, [salecode] [varchar](50) NULL, [saledetailcode] [varchar](50) NULL, [workordertype] [int] NULL, [productdate] [datetime] NULL, [productdept] [int] NULL, [productcode] [varchar](50) NULL, [productid] [int] NULL, [spec] [varchar](100) NULL, [productnumber] [decimal](18, 5) NULL, [unit] [int] NULL, [finishdate] [datetime] NULL, [deliverdate] [datetime] NULL, [warehouse] [int] NULL, [creatorId] [int] NULL, [createTime] [datetime] NULL, [remark] [varchar](200) NULL, [bomid] [int] NULL, CONSTRAINT [PK_workorder] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO SET IDENTITY_INSERT [dbo].[buyer] ON INSERT [dbo].[buyer] ([id], [buyercode], [buyerdate], [supplierid], [suppliercode], [deliverdate], [creatorId], [totalprice], [remark]) VALUES (4, N'CG20210701155911499', CAST(0x0000AD5900000000 AS DateTime), 2, N'GYS001', CAST(0x0000AD5D00000000 AS DateTime), 1, CAST(290000.00 AS Decimal(18, 2)), N'0') SET IDENTITY_INSERT [dbo].[buyer] OFF SET IDENTITY_INSERT [dbo].[buyerdetail] ON INSERT [dbo].[buyerdetail] ([id], [buyerid], [buyercode], [requisitioncode], [materialid], [materialcode], [materialspec], [materialunit], [buyernumber], [unitprice], [money], [warehouse], [delivernumber], [returnnumber], [realdelivernumber], [nodelivernumber], [finishnumber], [nofinishnumber], [remark], [buyerdetailcode]) VALUES (6, 4, N'CG20210701155911499', N'QGD2021711557336943', 5, N'WLXSP001', N'显示屏', 19, CAST(500.00000 AS Decimal(18, 5)), CAST(500.00 AS Decimal(18, 2)), CAST(250000.00 AS Decimal(18, 2)), 2, CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), NULL, N'SDD202107011559115171') INSERT [dbo].[buyerdetail] ([id], [buyerid], [buyercode], [requisitioncode], [materialid], [materialcode], [materialspec], [materialunit], [buyernumber], [unitprice], [money], [warehouse], [delivernumber], [returnnumber], [realdelivernumber], [nodelivernumber], [finishnumber], [nofinishnumber], [remark], [buyerdetailcode]) VALUES (7, 4, N'CG20210701155911499', N'QGD2021711557336941', 3, N'WLJP0001', N'30cm*15cm*3cm', 19, CAST(1000.00000 AS Decimal(18, 5)), CAST(30.00 AS Decimal(18, 2)), CAST(30000.00 AS Decimal(18, 2)), 2, CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), NULL, N'SDD202107011559115172') INSERT [dbo].[buyerdetail] ([id], [buyerid], [buyercode], [requisitioncode], [materialid], [materialcode], [materialspec], [materialunit], [buyernumber], [unitprice], [money], [warehouse], [delivernumber], [returnnumber], [realdelivernumber], [nodelivernumber], [finishnumber], [nofinishnumber], [remark], [buyerdetailcode]) VALUES (8, 4, N'CG20210701155911499', N'QGD2021711557336942', 4, N'WLSB0001', N'鼠标', 19, CAST(1000.00000 AS Decimal(18, 5)), CAST(10.00 AS Decimal(18, 2)), CAST(10000.00 AS Decimal(18, 2)), 2, CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), NULL, N'SDD202107011559115173') SET IDENTITY_INSERT [dbo].[buyerdetail] OFF SET IDENTITY_INSERT [dbo].[buyerInWarehouse] ON INSERT [dbo].[buyerInWarehouse] ([id], [code], [creatorId], [supplierid], [suppliercode], [intime], [remark]) VALUES (1, N'CGI20210705091308998', 1, 2, N'GYS001', CAST(0x0000AD5E00000000 AS DateTime), N'0') INSERT [dbo].[buyerInWarehouse] ([id], [code], [creatorId], [supplierid], [suppliercode], [intime], [remark]) VALUES (2, N'CGI20210705094401402', 1, 3, N'GYS002', CAST(0x00008F66017B0740 AS DateTime), N'0') INSERT [dbo].[buyerInWarehouse] ([id], [code], [creatorId], [supplierid], [suppliercode], [intime], [remark]) VALUES (3, N'CGI20210705094431381', 1, 2, N'GYS001', CAST(0x0000AD7300000000 AS DateTime), N'0') SET IDENTITY_INSERT [dbo].[buyerInWarehouse] OFF SET IDENTITY_INSERT [dbo].[buyerInWarehouseDetail] ON INSERT [dbo].[buyerInWarehouseDetail] ([id], [masterid], [mastercode], [detailcode], [buyerdetailcode], [buyercode], [materialid], [materialcode], [materialspec], [number], [unit], [warehouse], [remark]) VALUES (1, 1, N'CGI20210705091308998', N'CGID202107050913090211', N'SDD202107011559115171', N'CG20210701155911499', 5, N'WLXSP001', N'显示屏', CAST(30.00000 AS Decimal(18, 5)), 19, 2, NULL) SET IDENTITY_INSERT [dbo].[buyerInWarehouseDetail] OFF SET IDENTITY_INSERT [dbo].[buyerOutWarehouse] ON INSERT [dbo].[buyerOutWarehouse] ([id], [code], [outtime], [supplierid], [suppliercode], [creatorId], [remark]) VALUES (1, N'CGO20210705141708823', CAST(0x0000AD6600000000 AS DateTime), 3, N'GYS002', 1, N'0') INSERT [dbo].[buyerOutWarehouse] ([id], [code], [outtime], [supplierid], [suppliercode], [creatorId], [remark]) VALUES (2, N'CGO20210705141759018', CAST(0x0000AD7300000000 AS DateTime), 2, N'GYS001', 1, N'0') INSERT [dbo].[buyerOutWarehouse] ([id], [code], [outtime], [supplierid], [suppliercode], [creatorId], [remark]) VALUES (3, N'CGO20210705143414140', CAST(0x0000AD6D00000000 AS DateTime), 3, N'GYS002', 1, N'0') SET IDENTITY_INSERT [dbo].[buyerOutWarehouse] OFF SET IDENTITY_INSERT [dbo].[buyerOutWarehouseDetail] ON INSERT [dbo].[buyerOutWarehouseDetail] ([id], [masterid], [mastercode], [detailcode], [buyerreturncode], [buyerreturndetailcode], [buyercode], [buyerdetailcode], [materialid], [materialcode], [materialspec], [number], [unit], [warehouse], [remark]) VALUES (1, 1, N'CGO20210705141708823', N'CGOD202107051417088431', N'PR20210705141543803', N'PRD202107051415438301', N'CG20210701155911499', N'SDD202107011559115171', 5, N'WLXSP001', N'显示屏', CAST(20.00000 AS Decimal(18, 5)), 19, 2, NULL) INSERT [dbo].[buyerOutWarehouseDetail] ([id], [masterid], [mastercode], [detailcode], [buyerreturncode], [buyerreturndetailcode], [buyercode], [buyerdetailcode], [materialid], [materialcode], [materialspec], [number], [unit], [warehouse], [remark]) VALUES (2, 2, N'CGO20210705141759018', N'CGOD202107051417590281', N'PR20210705141543803', N'PRD202107051415438301', N'CG20210701155911499', N'SDD202107011559115171', 5, N'WLXSP001', N'显示屏', CAST(30.00000 AS Decimal(18, 5)), 19, 2, NULL) INSERT [dbo].[buyerOutWarehouseDetail] ([id], [masterid], [mastercode], [detailcode], [buyerreturncode], [buyerreturndetailcode], [buyercode], [buyerdetailcode], [materialid], [materialcode], [materialspec], [number], [unit], [warehouse], [remark]) VALUES (3, 3, N'CGO20210705143414140', N'CGO202107051434141401', N'PR20210705141543803', N'PRD202107051415438301', N'CG20210701155911499', N'SDD202107011559115171', 5, N'WLXSP001', N'显示屏', CAST(1.00000 AS Decimal(18, 5)), 19, 2, NULL) INSERT [dbo].[buyerOutWarehouseDetail] ([id], [masterid], [mastercode], [detailcode], [buyerreturncode], [buyerreturndetailcode], [buyercode], [buyerdetailcode], [materialid], [materialcode], [materialspec], [number], [unit], [warehouse], [remark]) VALUES (4, 3, N'CGO20210705143414140', N'CGO202107051434141402', N'PR20210705141543803', N'PRD202107051415438301', N'CG20210701155911499', N'SDD202107011559115171', 5, N'WLXSP001', N'显示屏', CAST(2.00000 AS Decimal(18, 5)), 19, 2, NULL) INSERT [dbo].[buyerOutWarehouseDetail] ([id], [masterid], [mastercode], [detailcode], [buyerreturncode], [buyerreturndetailcode], [buyercode], [buyerdetailcode], [materialid], [materialcode], [materialspec], [number], [unit], [warehouse], [remark]) VALUES (5, 3, N'CGO20210705143414140', N'CGO202107051434141403', N'PR20210705141543803', N'PRD202107051415438301', N'CG20210701155911499', N'SDD202107011559115171', 5, N'WLXSP001', N'显示屏', CAST(3.00000 AS Decimal(18, 5)), 19, 2, NULL) SET IDENTITY_INSERT [dbo].[buyerOutWarehouseDetail] OFF SET IDENTITY_INSERT [dbo].[buyerreturn] ON INSERT [dbo].[buyerreturn] ([id], [returndate], [suppliercode], [supplierid], [creatorId], [returnbuyercode], [totalprice], [remark]) VALUES (2, CAST(0x0000AD5C00000000 AS DateTime), N'GYS001', 2, 1, N'PR20210705141543803', CAST(0.00 AS Decimal(18, 2)), N'0') SET IDENTITY_INSERT [dbo].[buyerreturn] OFF SET IDENTITY_INSERT [dbo].[buyerreturndetail] ON INSERT [dbo].[buyerreturndetail] ([id], [buyerdetailcode], [buyercode], [materialcode], [materialid], [materialspec], [returnnumber], [unit], [unitprice], [money], [warehouse], [returnbuyercode], [returnbuyerdetailcode], [remark], [buyerreturnid]) VALUES (2, N'SDD202107011559115171', N'CG20210701155911499', N'WLXSP001', 5, N'显示屏', CAST(500.00000 AS Decimal(18, 5)), 19, CAST(500.00 AS Decimal(18, 2)), CAST(250000.00 AS Decimal(18, 2)), 2, N'PR20210705141543803', N'PRD202107051415438301', NULL, 2) SET IDENTITY_INSERT [dbo].[buyerreturndetail] OFF SET IDENTITY_INSERT [dbo].[completionProductInWarehouse] ON INSERT [dbo].[completionProductInWarehouse] ([id], [intime], [dept], [creatorId], [createTime], [code]) VALUES (1, CAST(0x0000AD6700000000 AS DateTime), 3, 1, CAST(0x0000AD5E010631DE AS DateTime), N'MOI20210707155500445') SET IDENTITY_INSERT [dbo].[completionProductInWarehouse] OFF SET IDENTITY_INSERT [dbo].[completionProductInWarehouseDetail] ON INSERT [dbo].[completionProductInWarehouseDetail] ([id], [masterid], [mastercode], [detailcode], [wocode], [salecode], [saledetailcode], [productid], [productcode], [spec], [number], [unit], [warehouse], [remark]) VALUES (1, 1, N'MOI20210707155500445', N'MOI202107071555004451', N'GD20210702083552824', N'SO202171155528704', N'SOD2021711555287171', 3, N'CPDN0001', N'联想', CAST(10.00000 AS Decimal(18, 5)), 20, 1, NULL) SET IDENTITY_INSERT [dbo].[completionProductInWarehouseDetail] OFF SET IDENTITY_INSERT [dbo].[customer] ON INSERT [dbo].[customer] ([id], [customername], [customertype], [contactuser], [phonenumber], [address], [startreceipt], [customercode], [totalreceivables], [totalamountsettled], [totaloutstandingamount], [remark]) VALUES (3, N'A客户', 27, 1, N'15029367414', N'陕西省宝鸡市', CAST(0.00 AS Decimal(18, 2)), N'KH001', CAST(0.00 AS Decimal(18, 2)), CAST(0.00 AS Decimal(18, 2)), CAST(0.00 AS Decimal(18, 2)), N'0') INSERT [dbo].[customer] ([id], [customername], [customertype], [contactuser], [phonenumber], [address], [startreceipt], [customercode], [totalreceivables], [totalamountsettled], [totaloutstandingamount], [remark]) VALUES (4, N'B客户', 27, 1, N'15029367414', N'陕西省咸阳市', CAST(0.00 AS Decimal(18, 2)), N'KH002', CAST(0.00 AS Decimal(18, 2)), CAST(0.00 AS Decimal(18, 2)), CAST(0.00 AS Decimal(18, 2)), N'0') SET IDENTITY_INSERT [dbo].[customer] OFF SET IDENTITY_INSERT [dbo].[deliversale] ON INSERT [dbo].[deliversale] ([id], [customerid], [customercode], [deliverdate], [customertype], [contactuser], [deliveraddress], [creatorId], [deliversalecode], [remark]) VALUES (3, 3, N'KH001', CAST(0x0000AD6600000000 AS DateTime), 27, 1, N'陕西省宝鸡市', 1, N'SD20210709144038058', N'0') SET IDENTITY_INSERT [dbo].[deliversale] OFF SET IDENTITY_INSERT [dbo].[deliversaledetail] ON INSERT [dbo].[deliversaledetail] ([id], [deliversaleid], [salecode], [productname], [productcode], [productspec], [warehouse], [number], [unit], [deliversalecode], [remark], [deliversaledetailcode]) VALUES (3, 3, N'SO202171155528704', N'电脑A', N'CPDN0001', N'联想', 1, CAST(500.00000 AS Decimal(18, 5)), 20, N'SD20210709144038058', NULL, N'SD202107091440380581') SET IDENTITY_INSERT [dbo].[deliversaledetail] OFF SET IDENTITY_INSERT [dbo].[finishProductInInWarehouse] ON INSERT [dbo].[finishProductInInWarehouse] ([id], [intime], [dept], [creatorId], [createTime], [code]) VALUES (4, CAST(0x0000AD6D00000000 AS DateTime), 3, 1, CAST(0x0000AD6A012303F1 AS DateTime), N'MPI20210719174005518') SET IDENTITY_INSERT [dbo].[finishProductInInWarehouse] OFF SET IDENTITY_INSERT [dbo].[finishProductInInWarehouseDetail] ON INSERT [dbo].[finishProductInInWarehouseDetail] ([id], [masterid], [mastercode], [completionProductInWarehouseCode], [completionProductInWarehouseDetailCode], [detailcode], [wocode], [salecode], [saledetailcode], [productid], [productcode], [productspec], [number], [unit], [warehouse], [remark]) VALUES (7, 4, N'MPI20210719174005518', N'MOI20210707155500445', N'MOI202107071555004451', N'MPI202107191740055181', N'GD20210702083552824', N'SO202171155528704', N'SOD2021711555287171', 3, N'CPDN0001', N'CPDN0001', CAST(20.00000 AS Decimal(18, 5)), 20, 1, NULL) SET IDENTITY_INSERT [dbo].[finishProductInInWarehouseDetail] OFF SET IDENTITY_INSERT [dbo].[material] ON INSERT [dbo].[material] ([id], [name], [code], [spec], [unit], [referprice], [materialtype], [warehouse], [POinnumber], [salereturnnumber], [YDProductConsume], [productmaterialreturn], [stocknumber], [stockwarnnumber], [remark]) VALUES (3, N'键盘', N'WLJP0001', N'30cm*15cm*3cm', 19, CAST(30.00 AS Decimal(18, 2)), 34, 2, CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(20.00000 AS Decimal(18, 5)), N'0') INSERT [dbo].[material] ([id], [name], [code], [spec], [unit], [referprice], [materialtype], [warehouse], [POinnumber], [salereturnnumber], [YDProductConsume], [productmaterialreturn], [stocknumber], [stockwarnnumber], [remark]) VALUES (4, N'鼠标', N'WLSB0001', N'鼠标', 19, CAST(10.00 AS Decimal(18, 2)), 34, 2, CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(20.00000 AS Decimal(18, 5)), N'0') INSERT [dbo].[material] ([id], [name], [code], [spec], [unit], [referprice], [materialtype], [warehouse], [POinnumber], [salereturnnumber], [YDProductConsume], [productmaterialreturn], [stocknumber], [stockwarnnumber], [remark]) VALUES (5, N'显示屏', N'WLXSP001', N'显示屏', 19, CAST(500.00 AS Decimal(18, 2)), 34, 2, CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(10.00000 AS Decimal(18, 5)), N'0') SET IDENTITY_INSERT [dbo].[material] OFF SET IDENTITY_INSERT [dbo].[product] ON INSERT [dbo].[product] ([id], [productname], [spec], [defaultprice], [unit], [warehouse], [producttype], [productcode], [stocknumber], [startnumber], [startprice], [productinnumber], [saleoutnumber], [customerreturnnumber], [stockwarnnumber], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (3, N'电脑A', N'联想', CAST(4999.00 AS Decimal(18, 2)), 20, 1, 24, N'CPDN0001', CAST(5.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00 AS Decimal(18, 2)), CAST(20.00000 AS Decimal(18, 5)), CAST(20.00000 AS Decimal(18, 5)), CAST(5.00000 AS Decimal(18, 5)), CAST(500.00000 AS Decimal(18, 5)), 1, CAST(0x0000AD580103A624 AS DateTime), 1, CAST(0x0000AD6A0122EF00 AS DateTime), N'0') SET IDENTITY_INSERT [dbo].[product] OFF SET IDENTITY_INSERT [dbo].[productBOM] ON INSERT [dbo].[productBOM] ([id], [customerid], [customercode], [productcode], [productid], [spec], [unit], [warehouse], [version], [productBOMcode], [remark], [unitcost], [creatorId], [createTime], [editorId], [editTime]) VALUES (4, 3, N'KH001', N'CPDN0001', 3, N'联想', 20, 1, N'A客户-A', N'BOM202171155644490', N'0', CAST(540.00 AS Decimal(18, 2)), 1, CAST(0x0000AD58010680FB AS DateTime), 1, CAST(0x0000AD58010680FB AS DateTime)) INSERT [dbo].[productBOM] ([id], [customerid], [customercode], [productcode], [productid], [spec], [unit], [warehouse], [version], [productBOMcode], [remark], [unitcost], [creatorId], [createTime], [editorId], [editTime]) VALUES (5, 4, N'KH002', N'CPDN0001', 3, N'联想', 20, 1, N'B客户-1', N'BOM202172171635460', N'0', CAST(1000.00 AS Decimal(18, 2)), 1, CAST(0x0000AD59011C9605 AS DateTime), 1, CAST(0x0000AD59011C9606 AS DateTime)) SET IDENTITY_INSERT [dbo].[productBOM] OFF SET IDENTITY_INSERT [dbo].[productBOMdetail] ON INSERT [dbo].[productBOMdetail] ([id], [pid], [productBOMid], [productBOMcode], [productcode], [materialid], [materialname], [materialcode], [materialspec], [materialtype], [unitusenumber], [unit], [warehouse], [unitprice], [money], [remark], [productBOMdetailcode]) VALUES (7, 0, 4, N'BOM202171155644490', N'CPDN0001', 3, NULL, N'WLJP0001', N'30cm*15cm*3cm', 34, CAST(1.00000 AS Decimal(18, 5)), 19, 2, CAST(30.00 AS Decimal(18, 2)), CAST(30.00 AS Decimal(18, 2)), NULL, NULL) INSERT [dbo].[productBOMdetail] ([id], [pid], [productBOMid], [productBOMcode], [productcode], [materialid], [materialname], [materialcode], [materialspec], [materialtype], [unitusenumber], [unit], [warehouse], [unitprice], [money], [remark], [productBOMdetailcode]) VALUES (8, 0, 4, N'BOM202171155644490', N'CPDN0001', 4, NULL, N'WLSB0001', N'鼠标', 34, CAST(1.00000 AS Decimal(18, 5)), 19, 2, CAST(10.00 AS Decimal(18, 2)), CAST(10.00 AS Decimal(18, 2)), NULL, NULL) INSERT [dbo].[productBOMdetail] ([id], [pid], [productBOMid], [productBOMcode], [productcode], [materialid], [materialname], [materialcode], [materialspec], [materialtype], [unitusenumber], [unit], [warehouse], [unitprice], [money], [remark], [productBOMdetailcode]) VALUES (9, 0, 4, N'BOM202171155644490', N'CPDN0001', 5, NULL, N'WLXSP001', N'显示屏', 34, CAST(1.00000 AS Decimal(18, 5)), 19, 2, CAST(500.00 AS Decimal(18, 2)), CAST(500.00 AS Decimal(18, 2)), NULL, NULL) INSERT [dbo].[productBOMdetail] ([id], [pid], [productBOMid], [productBOMcode], [productcode], [materialid], [materialname], [materialcode], [materialspec], [materialtype], [unitusenumber], [unit], [warehouse], [unitprice], [money], [remark], [productBOMdetailcode]) VALUES (10, 0, 5, N'BOM202172171635460', N'CPDN0001', 5, NULL, N'WLXSP001', N'显示屏', 34, CAST(2.00000 AS Decimal(18, 5)), 19, 2, CAST(500.00 AS Decimal(18, 2)), CAST(1000.00 AS Decimal(18, 2)), NULL, NULL) SET IDENTITY_INSERT [dbo].[productBOMdetail] OFF SET IDENTITY_INSERT [dbo].[productionMaterialReturn] ON INSERT [dbo].[productionMaterialReturn] ([id], [code], [returntime], [returndept], [creatorId], [createTime]) VALUES (1, N'MOR20210703154245313', CAST(0x0000AD6D00000000 AS DateTime), 3, 1, CAST(0x0000AD5A0102D7F4 AS DateTime)) SET IDENTITY_INSERT [dbo].[productionMaterialReturn] OFF SET IDENTITY_INSERT [dbo].[productionMaterialReturnDetail] ON INSERT [dbo].[productionMaterialReturnDetail] ([id], [masterid], [mastercode], [detailcode], [pickcode], [wocode], [materialid], [materialcode], [materialspec], [reason], [number], [unit], [warehouse], [remark], [pickdetailcode]) VALUES (1, 1, N'MOR20210703154245313', N'MORD202107031542453391', N'MOO20210702171333407', N'GD20210702171149017', 3, N'WLJP0001', N'30cm*15cm*3cm', N'多料', CAST(10.00000 AS Decimal(18, 5)), 19, 2, NULL, N'MOOD202107021714012892') SET IDENTITY_INSERT [dbo].[productionMaterialReturnDetail] OFF SET IDENTITY_INSERT [dbo].[productionRequisition] ON INSERT [dbo].[productionRequisition] ([id], [code], [wocode], [salecode], [pickingtime], [productID], [productcode], [productspec], [number], [unit], [pickingdept], [creatorId], [createTime], [remark]) VALUES (1, N'MOO20210702165948644', N'GD20210702083552824', N'SO202171155528704', CAST(0x0000AD7600000000 AS DateTime), 3, N'CPDN0001', N'联想', CAST(500.00000 AS Decimal(18, 5)), 20, 3, 1, CAST(0x0000AD590117F754 AS DateTime), N'0') INSERT [dbo].[productionRequisition] ([id], [code], [wocode], [salecode], [pickingtime], [productID], [productcode], [productspec], [number], [unit], [pickingdept], [creatorId], [createTime], [remark]) VALUES (2, N'MOO20210702171333407', N'GD20210702171149017', N'0', CAST(0x0000AD5900000000 AS DateTime), 3, N'CPDN0001', N'测试', CAST(60000.00000 AS Decimal(18, 5)), 20, 3, 1, CAST(0x0000AD59011B9DBE AS DateTime), N'0') SET IDENTITY_INSERT [dbo].[productionRequisition] OFF SET IDENTITY_INSERT [dbo].[productionRequisitionDetail] ON INSERT [dbo].[productionRequisitionDetail] ([id], [masterid], [mastercode], [detailcode], [materialid], [materialcode], [materialspec], [materialtype], [unitnumber], [productnumber], [picknumber], [unit], [warehouse], [remark], [wocode]) VALUES (1, 0, N'MOO20210702165948644', N'MOOD202107021659486811', 1, N'WLJP0001', N'30cm*15cm*3cm', 34, CAST(1.00000 AS Decimal(18, 5)), CAST(500.00000 AS Decimal(18, 5)), CAST(30.00000 AS Decimal(18, 5)), 19, 2, NULL, N'GD20210702083552824') INSERT [dbo].[productionRequisitionDetail] ([id], [masterid], [mastercode], [detailcode], [materialid], [materialcode], [materialspec], [materialtype], [unitnumber], [productnumber], [picknumber], [unit], [warehouse], [remark], [wocode]) VALUES (2, 0, N'MOO20210702165948644', N'MOOD202107021659486812', 1, N'WLXSP001', N'显示屏', 34, CAST(1.00000 AS Decimal(18, 5)), CAST(500.00000 AS Decimal(18, 5)), CAST(30.00000 AS Decimal(18, 5)), 19, 2, NULL, N'GD20210702083552824') INSERT [dbo].[productionRequisitionDetail] ([id], [masterid], [mastercode], [detailcode], [materialid], [materialcode], [materialspec], [materialtype], [unitnumber], [productnumber], [picknumber], [unit], [warehouse], [remark], [wocode]) VALUES (3, 0, N'MOO20210702165948644', N'MOOD202107021659486813', 1, N'WLSB0001', N'鼠标', 34, CAST(1.00000 AS Decimal(18, 5)), CAST(500.00000 AS Decimal(18, 5)), CAST(30.00000 AS Decimal(18, 5)), 19, 2, NULL, N'GD20210702083552824') INSERT [dbo].[productionRequisitionDetail] ([id], [masterid], [mastercode], [detailcode], [materialid], [materialcode], [materialspec], [materialtype], [unitnumber], [productnumber], [picknumber], [unit], [warehouse], [remark], [wocode]) VALUES (4, 1, N'MOO20210702165948644', N'MOOD202107021708434421', 3, N'WLJP0001', N'30cm*15cm*3cm', 34, CAST(1.00000 AS Decimal(18, 5)), CAST(500.00000 AS Decimal(18, 5)), CAST(10.00000 AS Decimal(18, 5)), 19, 2, NULL, N'GD20210702083552824') INSERT [dbo].[productionRequisitionDetail] ([id], [masterid], [mastercode], [detailcode], [materialid], [materialcode], [materialspec], [materialtype], [unitnumber], [productnumber], [picknumber], [unit], [warehouse], [remark], [wocode]) VALUES (5, 2, N'MOO20210702171333407', N'MOOD202107021713334281', 5, N'WLXSP001', N'显示屏', 34, CAST(1.00000 AS Decimal(18, 5)), CAST(60000.00000 AS Decimal(18, 5)), CAST(500.00000 AS Decimal(18, 5)), 19, 2, NULL, N'GD20210702171149017') INSERT [dbo].[productionRequisitionDetail] ([id], [masterid], [mastercode], [detailcode], [materialid], [materialcode], [materialspec], [materialtype], [unitnumber], [productnumber], [picknumber], [unit], [warehouse], [remark], [wocode]) VALUES (6, 2, N'MOO20210702171333407', N'MOOD202107021714012891', 4, N'WLSB0001', N'鼠标', 34, CAST(1.00000 AS Decimal(18, 5)), CAST(60000.00000 AS Decimal(18, 5)), CAST(3.00000 AS Decimal(18, 5)), 19, 2, NULL, N'GD20210702171149017') INSERT [dbo].[productionRequisitionDetail] ([id], [masterid], [mastercode], [detailcode], [materialid], [materialcode], [materialspec], [materialtype], [unitnumber], [productnumber], [picknumber], [unit], [warehouse], [remark], [wocode]) VALUES (7, 2, N'MOO20210702171333407', N'MOOD202107021714012892', 3, N'WLJP0001', N'30cm*15cm*3cm', 34, CAST(1.00000 AS Decimal(18, 5)), CAST(60000.00000 AS Decimal(18, 5)), CAST(6.00000 AS Decimal(18, 5)), 19, 2, NULL, N'GD20210702171149017') INSERT [dbo].[productionRequisitionDetail] ([id], [masterid], [mastercode], [detailcode], [materialid], [materialcode], [materialspec], [materialtype], [unitnumber], [productnumber], [picknumber], [unit], [warehouse], [remark], [wocode]) VALUES (8, 1, N'MOO20210702165948644', N'MOOD202107090819227701', 4, N'WLSB0001', N'鼠标', 34, CAST(1.00000 AS Decimal(18, 5)), CAST(500.00000 AS Decimal(18, 5)), CAST(60.00000 AS Decimal(18, 5)), 19, 2, NULL, N'GD20210702083552824') SET IDENTITY_INSERT [dbo].[productionRequisitionDetail] OFF SET IDENTITY_INSERT [dbo].[productMaterialInWarehouse] ON INSERT [dbo].[productMaterialInWarehouse] ([id], [code], [intime], [dept], [creatorId], [remark]) VALUES (1, N'MMR20210706151905858', CAST(0x0000AD6D00000000 AS DateTime), 3, 1, N'0') SET IDENTITY_INSERT [dbo].[productMaterialInWarehouse] OFF SET IDENTITY_INSERT [dbo].[productMaterialInWarehouseDetail] ON INSERT [dbo].[productMaterialInWarehouseDetail] ([id], [masterid], [masercode], [detailcode], [productionMaterialReturnCode], [productionMaterialReturnDetailCode], [materialid], [materialcode], [materialspec], [reason], [number], [unit], [warehouse], [wocode], [remark]) VALUES (1, 1, N'MMR20210706151905858', N'MMRD202107061519058781', N'MOR20210703154245313', N'MORD202107031542453391', 3, N'WLJP0001', N'30cm*15cm*3cm', NULL, CAST(1.00000 AS Decimal(18, 5)), 19, 2, N'GD20210702171149017', NULL) SET IDENTITY_INSERT [dbo].[productMaterialInWarehouseDetail] OFF SET IDENTITY_INSERT [dbo].[productMaterialOutWarehouse] ON INSERT [dbo].[productMaterialOutWarehouse] ([id], [code], [dept], [outtime], [creatorId], [remark]) VALUES (2, N'MMO20210705162343230', 3, CAST(0x0000AD6D00000000 AS DateTime), 1, N'0') SET IDENTITY_INSERT [dbo].[productMaterialOutWarehouse] OFF SET IDENTITY_INSERT [dbo].[productMaterialOutWarehouseDetail] ON INSERT [dbo].[productMaterialOutWarehouseDetail] ([id], [masterid], [mastercode], [detailcode], [pickcode], [pickdetailcode], [wocode], [materialid], [materialcode], [materialspec], [materialtype], [number], [unit], [warehouse], [remark]) VALUES (2, 2, N'MMO20210705162343230', N'MMO202107051623432301', N'MOO20210702165948644', N'MOOD202107021708434421', N'GD20210702083552824', 3, N'WLJP0001', N'30cm*15cm*3cm', 34, CAST(30.00000 AS Decimal(18, 5)), 19, 2, NULL) SET IDENTITY_INSERT [dbo].[productMaterialOutWarehouseDetail] OFF SET IDENTITY_INSERT [dbo].[quotation] ON INSERT [dbo].[quotation] ([id], [customerid], [quotationdate], [customercode], [customertype], [customeruser], [creatorId], [deliveraddress], [quotationcode], [remark], [totalprice]) VALUES (13, 3, CAST(0x0000AD580105F3F5 AS DateTime), N'KH001', 27, 1, 1, N'陕西省宝鸡市', N'KH202171155413382', N'0', CAST(2449500.00 AS Decimal(18, 2))) SET IDENTITY_INSERT [dbo].[quotation] OFF SET IDENTITY_INSERT [dbo].[quotationdetail] ON INSERT [dbo].[quotationdetail] ([id], [productname], [productid], [spec], [number], [unit], [unitprice], [money], [stockid], [productcode], [quotationcode], [quotationid], [remark], [quotationdetailcode]) VALUES (21, N'电脑A', 3, N'联想', CAST(500.00000 AS Decimal(18, 5)), 20, CAST(4899.00 AS Decimal(18, 2)), CAST(2449500.00 AS Decimal(18, 2)), 1, N'CPDN0001', N'KH202171155413382', 13, NULL, N'KHD2021711554133961') SET IDENTITY_INSERT [dbo].[quotationdetail] OFF SET IDENTITY_INSERT [dbo].[requisition] ON INSERT [dbo].[requisition] ([id], [requisitioncode], [deptid], [requisitiondate], [deliverdate], [creatorId], [totalprice], [remark]) VALUES (6, N'QG202171155733681', 3, CAST(0x0000AD580106D5BF AS DateTime), CAST(0x0000AD5E00000000 AS DateTime), 1, CAST(590600.00 AS Decimal(18, 2)), CAST(0.00 AS Decimal(18, 2))) SET IDENTITY_INSERT [dbo].[requisition] OFF SET IDENTITY_INSERT [dbo].[requisitiondetail] ON INSERT [dbo].[requisitiondetail] ([id], [requisitionid], [requisitioncode], [materialid], [materialcode], [materialspec], [materialunit], [requisitionnumber], [unitprice], [money], [warehouse], [remark], [requisitiondetailcode]) VALUES (7, 6, N'QG202171155733681', 3, N'WLJP0001', N'30cm*15cm*3cm', 19, CAST(1000.00000 AS Decimal(18, 5)), CAST(30.00 AS Decimal(18, 2)), CAST(30000.00 AS Decimal(18, 2)), 2, NULL, N'QGD2021711557336941') INSERT [dbo].[requisitiondetail] ([id], [requisitionid], [requisitioncode], [materialid], [materialcode], [materialspec], [materialunit], [requisitionnumber], [unitprice], [money], [warehouse], [remark], [requisitiondetailcode]) VALUES (8, 6, N'QG202171155733681', 4, N'WLSB0001', N'鼠标', 19, CAST(1000.00000 AS Decimal(18, 5)), CAST(10.00 AS Decimal(18, 2)), CAST(10000.00 AS Decimal(18, 2)), 2, NULL, N'QGD2021711557336942') INSERT [dbo].[requisitiondetail] ([id], [requisitionid], [requisitioncode], [materialid], [materialcode], [materialspec], [materialunit], [requisitionnumber], [unitprice], [money], [warehouse], [remark], [requisitiondetailcode]) VALUES (9, 6, N'QG202171155733681', 5, N'WLXSP001', N'显示屏', 19, CAST(500.00000 AS Decimal(18, 5)), CAST(500.00 AS Decimal(18, 2)), CAST(250000.00 AS Decimal(18, 2)), 2, NULL, N'QGD2021711557336943') INSERT [dbo].[requisitiondetail] ([id], [requisitionid], [requisitioncode], [materialid], [materialcode], [materialspec], [materialunit], [requisitionnumber], [unitprice], [money], [warehouse], [remark], [requisitiondetailcode]) VALUES (10, 6, N'QG202171155733681', 5, N'WLXSP001', N'显示屏', 19, CAST(600.00000 AS Decimal(18, 5)), CAST(500.00 AS Decimal(18, 2)), CAST(300000.00 AS Decimal(18, 2)), 2, NULL, N'QGD202179818279581') INSERT [dbo].[requisitiondetail] ([id], [requisitionid], [requisitioncode], [materialid], [materialcode], [materialspec], [materialunit], [requisitionnumber], [unitprice], [money], [warehouse], [remark], [requisitiondetailcode]) VALUES (11, 6, N'QG202171155733681', 4, N'WLSB0001', N'鼠标', 19, CAST(60.00000 AS Decimal(18, 5)), CAST(10.00 AS Decimal(18, 2)), CAST(600.00 AS Decimal(18, 2)), 2, NULL, N'QG202107090847209561') SET IDENTITY_INSERT [dbo].[requisitiondetail] OFF SET IDENTITY_INSERT [dbo].[returnsale] ON INSERT [dbo].[returnsale] ([id], [returndate], [customercode], [customerid], [customertype], [contactuser], [contactphone], [creatorId], [returnsalecode], [remark]) VALUES (2, CAST(0x0000AD6A00000000 AS DateTime), N'KH001', 3, 27, 1, N'15029367414', 1, N'SD20210719174337649', N'0') SET IDENTITY_INSERT [dbo].[returnsale] OFF SET IDENTITY_INSERT [dbo].[returnsaledetail] ON INSERT [dbo].[returnsaledetail] ([id], [returnsaleid], [returnsalecode], [deliversalecode], [salecode], [productcode], [productname], [productspec], [warehouse], [returnnumber], [unit], [remark], [returnsaledetailcode]) VALUES (2, 2, N'SD20210719174337649', N'SD20210709144038058', N'SO202171155528704', N'CPDN0001', N'电脑A', N'联想', 1, CAST(5.00000 AS Decimal(18, 5)), 20, NULL, N'SD202107191743376491') SET IDENTITY_INSERT [dbo].[returnsaledetail] OFF SET IDENTITY_INSERT [dbo].[sale] ON INSERT [dbo].[sale] ([id], [saleordercode], [orderdate], [customerid], [customercode], [customertype], [customerordercode], [contactuser], [contactphone], [deliveraddress], [salesman], [finishdate], [creatorId], [remark]) VALUES (5, N'SO202171155528704', CAST(0x0000AD58010632C4 AS DateTime), 3, N'KH001', 27, N'KHDH00001', 1, N'15029367414', N'陕西省宝鸡市', 1, CAST(0x0000AD7600000000 AS DateTime), 1, N'0') SET IDENTITY_INSERT [dbo].[sale] OFF SET IDENTITY_INSERT [dbo].[saledetail] ON INSERT [dbo].[saledetail] ([id], [productid], [productspec], [salenumber], [unit], [unitprice], [money], [deliverdate], [warehouse], [readynumber], [noreadynumber], [finishnumber], [outnumber], [returnnumber], [nodelivernumber], [delivernumber], [closenumber], [noclosenumber], [materialcost], [realmaterialcost], [productcode], [saleid], [salecode], [saledetailcode]) VALUES (6, 3, N'联想', CAST(500.00000 AS Decimal(18, 5)), 20, CAST(4899.00 AS Decimal(18, 2)), CAST(2449500.00 AS Decimal(18, 2)), CAST(0x0000AD7500000000 AS DateTime), 1, CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), CAST(0.00000 AS Decimal(18, 5)), N'CPDN0001', 5, N'SO202171155528704', N'SOD2021711555287171') SET IDENTITY_INSERT [dbo].[saledetail] OFF SET IDENTITY_INSERT [dbo].[saleInWarehouse] ON INSERT [dbo].[saleInWarehouse] ([id], [inTime], [dept], [creatorId], [createTime], [code]) VALUES (1, CAST(0x0000AD6B00000000 AS DateTime), 3, 1, CAST(0x0000AD6A012429A7 AS DateTime), N'SOR20210719174416024') SET IDENTITY_INSERT [dbo].[saleInWarehouse] OFF SET IDENTITY_INSERT [dbo].[saleInWarehouseDetail] ON INSERT [dbo].[saleInWarehouseDetail] ([id], [returnsalecode], [returnsaledetailcode], [mastercode], [detailcode], [salecode], [saledetailcode], [productID], [productcode], [spec], [number], [unit], [warehouse], [remark], [masterid]) VALUES (1, N'SD20210719174337649', N'SD202107191743376491', N'SOR20210719174416024', N'SOR202107191744160241', N'SO202171155528704', NULL, 3, N'CPDN0001', N'联想', CAST(5.00000 AS Decimal(18, 5)), 20, 1, NULL, 1) SET IDENTITY_INSERT [dbo].[saleInWarehouseDetail] OFF SET IDENTITY_INSERT [dbo].[saleOutWarehouse] ON INSERT [dbo].[saleOutWarehouse] ([id], [code], [outtime], [dept], [creatorId], [createTime], [remark]) VALUES (3, N'SOO20210719174242929', CAST(0x0000AD7100000000 AS DateTime), 3, 1, CAST(0x0000AD6A0123BDDD AS DateTime), N'0') SET IDENTITY_INSERT [dbo].[saleOutWarehouse] OFF SET IDENTITY_INSERT [dbo].[saleOutWarehouseDetail] ON INSERT [dbo].[saleOutWarehouseDetail] ([id], [masterid], [mastercode], [detailcode], [saledelivercode], [saledeliverdetailcode], [salecode], [saledetailcode], [productid], [productcode], [spec], [number], [unit], [warehouse], [remark]) VALUES (6, 3, N'SOO20210719174242929', N'SOO202107191742429291', N'SD20210709144038058', N'SD202107091440380581', N'SO202171155528704', NULL, 3, N'CPDN0001', N'联想', CAST(20.00000 AS Decimal(18, 5)), 20, 1, NULL) SET IDENTITY_INSERT [dbo].[saleOutWarehouseDetail] OFF SET IDENTITY_INSERT [dbo].[stock] ON INSERT [dbo].[stock] ([id], [name], [address], [remark]) VALUES (1, N'成品仓', N'陕西省', N'0') INSERT [dbo].[stock] ([id], [name], [address], [remark]) VALUES (2, N'原料仓', N'原料仓', N'0') INSERT [dbo].[stock] ([id], [name], [address], [remark]) VALUES (3, N'半成品仓', N'陕西省宝鸡市', N'0') SET IDENTITY_INSERT [dbo].[stock] OFF SET IDENTITY_INSERT [dbo].[stockData] ON INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600010', N'包钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9243) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603628', N'清源股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9244) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603332', N'苏州龙杰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9245) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600039', N'四川路桥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9246) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600048', N'保利地产', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9247) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600136', N'当代文体', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9248) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600135', N'乐凯胶片', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9249) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600053', N'九鼎投资', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9250) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600130', N'波导股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9251) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600061', N'国投资本', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9252) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600063', N'皖维高新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9253) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600155', N'华创阳安', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9254) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600157', N'ST永泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9255) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600159', N'大龙地产', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9256) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600071', N'凤凰光学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9257) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600076', N'康欣新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9258) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600077', N'宋都股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9259) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600078', N'澄星股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9260) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600079', N'人福医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9261) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600081', N'东风科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9262) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600082', N'海泰发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9263) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603330', N'上海天洋', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9264) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603323', N'苏农银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9265) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600188', N'兖州煤业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9266) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600190', N'锦州港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9267) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600189', N'泉阳泉', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9268) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600090', N'同济堂', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9269) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603311', N'金海高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9270) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603315', N'福鞍股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9271) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603319', N'湘油泵', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9272) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600346', N'恒力石化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9273) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600101', N'明星电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9274) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603305', N'旭升股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9275) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603309', N'维力医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9276) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603279', N'景津环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9277) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600111', N'北方稀土', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9278) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600113', N'浙江东日', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9279) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600115', N'东方航空', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9280) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603278', N'大业股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9281) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600120', N'浙江东方', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9282) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600202', N'哈空调', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9283) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600209', N'ST罗顿', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9284) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600210', N'紫江企业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9285) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600211', N'西藏药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9286) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600220', N'江苏阳光', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9287) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600212', N'江泉实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9288) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600215', N'长春经开', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9289) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600225', N'*ST松江', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9290) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600222', N'太龙药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9291) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600229', N'城市传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9292) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600146', N'商赢环球', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9293) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600251', N'冠农股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9294) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600151', N'航天机电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9295) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600156', N'华升股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9296) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600277', N'亿利洁能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9297) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600281', N'太化股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9298) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600160', N'巨化股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9299) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600161', N'天坛生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9300) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600162', N'香江控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9301) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603266', N'天龙股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9302) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603269', N'海鸥股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9303) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603256', N'宏和科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9304) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600280', N'中央商场', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9305) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600287', N'江苏舜天', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9306) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600290', N'ST华仪', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9307) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600289', N'*ST信通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9308) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600169', N'太原重工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9309) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600175', N'美都能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9310) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600348', N'华阳股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9311) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600356', N'恒丰纸业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9312) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600358', N'国旅联合', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9313) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600365', N'ST通葡', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9314) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600359', N'新农开发', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9315) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600370', N'三房巷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9316) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600368', N'五洲交通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9317) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600367', N'红星发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9318) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600197', N'伊力特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9319) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600022', N'山东钢铁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9320) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600051', N'宁波联合', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9321) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600199', N'金种子酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9322) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600200', N'江苏吴中', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9323) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603223', N'恒通股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9324) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601995', N'中金公司', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9325) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600203', N'福日电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9326) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600206', N'有研新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9327) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600207', N'安彩高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9328) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600399', N'抚顺特钢', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9329) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600208', N'新湖中宝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9330) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600415', N'小商品城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9331) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600416', N'湘电股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9332) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600421', N'华嵘控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9333) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600423', N'柳化股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9334) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600213', N'亚星客车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9335) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603221', N'爱丽家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9336) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600218', N'全柴动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9337) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600221', N'海航控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9338) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603217', N'元利科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9339) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603203', N'快克股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9340) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600223', N'鲁商发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9341) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600226', N'瀚叶股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9342) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605338', N'巴比食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9343) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600227', N'圣济堂', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9344) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600235', N'民丰特纸', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9345) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600236', N'桂冠电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9346) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603196', N'日播时尚', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9347) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603167', N'渤海轮渡', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9348) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603177', N'德创环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9349) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603181', N'皇马科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9350) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603188', N'亚邦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9351) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600242', N'中昌数据', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9352) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600246', N'万通发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9353) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605336', N'帅丰电器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9354) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603166', N'福达股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9355) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603165', N'荣晟环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9356) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601568', N'北元集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9357) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605058', N'澳弘电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9358) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600262', N'北方股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9359) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600099', N'林海股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9360) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600266', N'城建发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9361) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600267', N'海正药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9362) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600268', N'国电南自', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9363) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600278', N'东方创业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9364) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600279', N'重庆港九', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9365) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600283', N'钱江水利', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9366) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600285', N'羚锐制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9367) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603161', N'科华控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9368) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600288', N'大恒科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9369) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601187', N'厦门银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9370) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600291', N'西水股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9371) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600293', N'三峡新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9372) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605169', N'洪通燃气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9373) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600300', N'维维股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9374) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600310', N'桂东电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9375) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600311', N'荣华实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9376) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600313', N'农发种业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9377) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605007', N'五洲特纸', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9378) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600317', N'营口港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9379) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603159', N'上海亚虹', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9380) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600083', N'博信股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9381) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605319', N'无锡振华', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9382) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600322', N'天房发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9383) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600323', N'瀚蓝环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9384) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600326', N'西藏天路', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9385) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600336', N'澳柯玛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9386) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600337', N'美克家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9387) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600338', N'西藏珠峰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9388) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600339', N'中油工程', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9389) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600351', N'亚宝药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9390) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605068', N'明新旭腾', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9391) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600353', N'旭光电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9392) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600354', N'敦煌种业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9393) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605177', N'东亚药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9394) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600355', N'精伦电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9395) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600360', N'华微电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9396) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605266', N'健之佳', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9397) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600363', N'联创光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9398) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600366', N'宁波韵升', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9399) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600371', N'万向德农', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9400) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605258', N'协和电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9401) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600375', N'汉马科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9402) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601686', N'友发集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9403) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600381', N'青海春天', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9404) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605183', N'确成股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9405) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601188', N'龙江交通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9406) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601208', N'东材科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9407) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600392', N'盛和资源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9408) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600393', N'粤泰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9409) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600398', N'海澜之家', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9410) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603157', N'拉夏贝尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9411) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603113', N'金能科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9412) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603139', N'康惠制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9413) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600419', N'天润乳业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9414) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600425', N'青松建化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9415) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605339', N'南侨食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9416) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600906', N'财达证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9417) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600429', N'三元股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9418) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605376', N'博迁新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9419) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603109', N'神驰机电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9420) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603105', N'芯能科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9421) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600449', N'宁夏建材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9422) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600455', N'博通股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9423) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603101', N'汇嘉时代', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9424) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603096', N'新经典', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9425) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603098', N'森特股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9426) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600463', N'空港股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9427) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600466', N'蓝光发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9428) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605299', N'舒华体育', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9429) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600467', N'好当家', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9430) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600476', N'湘邮科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9431) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605151', N'西上海', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9432) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600478', N'科力远', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9433) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600479', N'千金药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9434) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600480', N'凌云股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9435) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600481', N'双良节能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9436) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600488', N'天药股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9437) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600495', N'晋西车轴', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9438) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600499', N'科达制造', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9439) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605500', N'森林包装', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9440) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600501', N'航天晨光', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9441) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600503', N'华丽家族', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9442) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600505', N'西昌电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9443) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600506', N'香梨股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9444) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605186', N'健麾信息', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9445) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600517', N'国网英大', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9446) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600103', N'青山纸业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9447) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603095', N'越剑智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9448) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600520', N'文一科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9449) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600525', N'长园集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9450) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600526', N'菲达环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9451) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600527', N'江南高纤', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9452) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601956', N'东贝集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9453) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600530', N'交大昂立', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9454) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600533', N'栖霞建设', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9455) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605179', N'一鸣食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9456) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600537', N'亿晶光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9457) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605377', N'华旺科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9458) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600549', N'厦门钨业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9459) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600559', N'老白干酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9460) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600562', N'国睿科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9461) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600568', N'中珠医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9462) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600573', N'惠泉啤酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9463) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603090', N'宏盛股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9464) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603086', N'先达股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9465) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605155', N'西大门', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9466) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600587', N'新华医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9467) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605277', N'新亚电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9468) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600593', N'大连圣亚', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9469) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600192', N'长城电工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9470) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600596', N'新安股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9471) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600601', N'方正科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9472) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600602', N'云赛智联', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9473) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600603', N'广汇物流', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9474) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600604', N'市北高新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9475) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605005', N'合兴股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9476) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600613', N'神奇制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9477) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600193', N'ST创兴', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9478) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600198', N'大唐电信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9479) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603067', N'振华股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9480) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600623', N'华谊集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9481) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600624', N'复旦复华', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9482) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600626', N'申达股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9483) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600628', N'新世界', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9484) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603081', N'大丰实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9485) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600630', N'龙头股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9486) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603077', N'和邦生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9487) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605228', N'神通科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9488) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605398', N'新炬网络', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9489) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600638', N'新黄浦', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9490) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600639', N'浦东金桥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9491) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600640', N'号百控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9492) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600641', N'万业企业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9493) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600644', N'乐山电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9494) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600645', N'中源协和', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9495) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600647', N'同达创业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9496) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600649', N'城投控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9497) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600651', N'飞乐音响', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9498) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600661', N'昂立教育', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9499) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600662', N'强生控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9500) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600096', N'云天化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9501) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603719', N'良品铺子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9502) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600668', N'尖峰集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9503) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603179', N'新泉股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9504) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600671', N'天目药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9505) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603053', N'成都燃气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9506) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603055', N'台华新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9507) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603045', N'福达合金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9508) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603050', N'科林电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9509) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605286', N'同力日升', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9510) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600678', N'四川金顶', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9511) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603041', N'美思德', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9512) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600682', N'南京新百', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9513) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600683', N'京投发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9514) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600684', N'珠江股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9515) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605055', N'迎丰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9516) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605368', N'蓝天燃气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9517) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600689', N'上海三毛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9518) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603038', N'华立股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9519) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603040', N'新坐标', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9520) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600693', N'东百集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9521) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603037', N'凯众股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9522) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600695', N'绿庭投资', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9523) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600697', N'欧亚集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9524) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600916', N'中国黄金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9525) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601963', N'重庆银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9526) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600706', N'曲江文旅', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9527) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605337', N'李子园', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9528) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605077', N'华康股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9529) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605081', N'太和水', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9530) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600708', N'光明地产', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9531) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603036', N'如通股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9532) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603031', N'安德利', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9533) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600711', N'盛屯矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9534) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600712', N'南宁百货', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9535) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603030', N'全筑股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9536) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600716', N'凤凰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9537) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600719', N'大连热电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9538) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600191', N'华资实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9539) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600724', N'宁波富达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9540) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601156', N'东航物流', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9541) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600730', N'中国高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9542) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600734', N'实达集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9543) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600736', N'苏州高新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9544) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600737', N'中粮糖业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9545) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605133', N'嵘泰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9546) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600744', N'华银电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9547) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605268', N'王力安防', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9548) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600746', N'江苏索普', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9549) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600748', N'上实发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9550) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603893', N'瑞芯微', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9551) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600755', N'厦门国贸', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9552) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600756', N'浪潮软件', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9553) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600764', N'中国海防', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9554) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600770', N'综艺股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9555) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600771', N'广誉远', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9556) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605303', N'园林股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9557) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605060', N'联德股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9558) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600773', N'西藏城投', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9559) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605298', N'必得科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9560) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600777', N'新潮能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9561) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605208', N'永茂泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9562) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600783', N'鲁信创投', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9563) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600784', N'鲁银投资', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9564) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600785', N'新华百货', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9565) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605122', N'四方新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9566) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603029', N'天鹅股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9567) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603013', N'亚普股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9568) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600796', N'钱江生化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9569) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600800', N'渤海化学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9570) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600802', N'福建水泥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9571) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605389', N'长龄液压', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9572) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600808', N'马钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9573) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603759', N'海天股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9574) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603012', N'创力集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9575) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603001', N'奥康国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9576) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603007', N'花王股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9577) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600818', N'中路股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9578) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600819', N'耀皮玻璃', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9579) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600821', N'津劝业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9580) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600822', N'上海物贸', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9581) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600824', N'益民集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9582) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600825', N'新华传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9583) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600828', N'茂业商业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9584) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600829', N'人民同泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9585) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600830', N'香溢融通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9586) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600831', N'广电网络', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9587) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600833', N'第一医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9588) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600834', N'申通地铁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9589) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600836', N'上海易连', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9590) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600838', N'上海九百', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9591) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600841', N'上柴股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9592) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600843', N'上工申贝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9593) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600846', N'同济科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9594) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601999', N'出版传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9595) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603324', N'盛剑环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9596) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600851', N'海欣股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9597) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600853', N'龙建股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9598) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600854', N'春兰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9599) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600855', N'航天长峰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9600) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600857', N'宁波中百', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9601) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601882', N'海天精工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9602) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601886', N'江河集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9603) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600860', N'京城股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9604) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600861', N'北京城乡', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9605) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605378', N'野马电池', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9606) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600862', N'中航高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9607) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600864', N'哈投股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9608) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600865', N'百大集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9609) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600866', N'星湖科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9610) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600867', N'通化东宝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9611) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600868', N'梅雁吉祥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9612) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600869', N'远东股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9613) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600871', N'石化油服', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9614) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601279', N'英利汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9615) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600874', N'创业环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9616) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605086', N'龙高股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9617) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600876', N'洛阳玻璃', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9618) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600879', N'航天电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9619) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600880', N'博瑞传播', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9620) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600882', N'妙可蓝多', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9621) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601969', N'海南矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9622) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601929', N'吉视传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9623) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600885', N'宏发股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9624) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600888', N'新疆众和', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9625) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600889', N'南京化纤', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9626) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601908', N'京运通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9627) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600110', N'诺德股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9628) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600112', N'ST天成', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9629) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600117', N'西宁特钢', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9630) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600894', N'广日股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9631) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601898', N'中煤能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9632) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600387', N'海越能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9633) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600898', N'国美通讯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9634) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600917', N'重庆燃气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9635) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600959', N'江苏有线', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9636) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600962', N'国投中鲁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9637) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600965', N'福成股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9638) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600966', N'博汇纸业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9639) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600973', N'宝胜股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9640) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600976', N'健民集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9641) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601918', N'新集能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9642) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600980', N'北矿科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9643) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600981', N'汇鸿集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9644) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600982', N'宁波能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9645) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600983', N'惠而浦', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9646) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600986', N'浙文互联', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9647) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600988', N'赤峰黄金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9648) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600990', N'四创电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9649) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600992', N'贵绳股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9650) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605117', N'德业股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9651) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601002', N'晋亿实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9652) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601008', N'连云港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9653) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605098', N'行动教育', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9654) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601016', N'节能风电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9655) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605016', N'百龙创园', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9656) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601798', N'ST蓝科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9657) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601069', N'西部黄金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9658) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601100', N'恒立液压', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9659) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601699', N'潞安环能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9660) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601106', N'中国一重', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9661) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601118', N'海南橡胶', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9662) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601126', N'四方股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9663) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601168', N'西部矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9664) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601199', N'江南水务', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9665) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601609', N'金田铜业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9666) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601222', N'林洋能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9667) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601619', N'嘉泽新能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9668) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601666', N'平煤股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9669) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601678', N'滨化股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9670) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601696', N'中银证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9671) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601226', N'华电重工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9672) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601233', N'桐昆股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9673) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605289', N'罗曼股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9674) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601311', N'骆驼股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9675) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605089', N'味知香', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9676) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601339', N'百隆东方', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9677) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601388', N'怡球资源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9678) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601515', N'东风股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9679) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601599', N'浙文影业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9680) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600389', N'江山股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9681) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601567', N'三星医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9682) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601608', N'中信重工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9683) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601616', N'广电电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9684) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601677', N'明泰铝业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9685) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601566', N'九牧王', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9686) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601689', N'拓普集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9687) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601512', N'中新集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9688) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601518', N'吉林高速', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9689) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601700', N'风范股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9690) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605300', N'佳禾食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9691) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601727', N'上海电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9692) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605180', N'华生科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9693) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605080', N'浙大自然', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9694) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601789', N'宁波建工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9695) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605305', N'中际联合', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9696) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600386', N'北巴传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9697) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600405', N'动力源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9698) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601799', N'星宇股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9699) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601818', N'光大银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9700) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601866', N'中远海发', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9701) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605196', N'华通线缆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9702) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605488', N'福莱新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9703) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601958', N'金钼股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9704) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601968', N'宝钢包装', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9705) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601500', N'通用股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9706) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601369', N'陕鼓动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9707) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601996', N'丰林集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9708) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603002', N'宏昌电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9709) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603003', N'龙宇燃油', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9710) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603006', N'联明股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9711) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603009', N'北特科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9712) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603010', N'万盛股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9713) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601368', N'绿城水务', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9714) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603015', N'弘讯科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9715) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603017', N'中衡设计', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9716) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603018', N'中设集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9717) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603020', N'爱普股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9718) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603021', N'山东华鹏', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9719) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603022', N'新通联', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9720) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603023', N'威帝股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9721) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603025', N'大豪科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9722) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601258', N'ST庞大', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9723) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601225', N'陕西煤业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9724) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603085', N'天成自控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9725) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603088', N'宁波精达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9726) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603099', N'长白山', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9727) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603108', N'润达医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9728) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603111', N'康尼机电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9729) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603116', N'红蜻蜓', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9730) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603117', N'万林物流', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9731) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603123', N'翠微股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9732) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603126', N'中材节能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9733) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603158', N'腾龙股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9734) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601218', N'吉鑫科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9735) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603168', N'莎普爱思', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9736) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603222', N'济民医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9737) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603227', N'雪峰科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9738) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603268', N'松发股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9739) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603299', N'井神股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9740) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603300', N'华铁应急', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9741) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603308', N'应流股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9742) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603318', N'水发燃气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9743) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603333', N'尚纬股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9744) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603366', N'日出东方', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9745) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603456', N'九洲药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9746) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601179', N'中国西电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9747) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603508', N'思维列控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9748) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603519', N'立霸股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9749) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603566', N'普莱柯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9750) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603568', N'伟明环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9751) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601177', N'杭齿前进', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9752) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603600', N'永艺股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9753) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603601', N'再升科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9754) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603609', N'禾丰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9755) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603611', N'诺力股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9756) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603616', N'韩建河山', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9757) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603618', N'杭电股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9758) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601113', N'ST华鼎', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9759) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603688', N'石英股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9760) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603703', N'盛洋科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9761) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601086', N'国芳集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9762) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601098', N'中南传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9763) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603789', N'星光农机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9764) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603800', N'道森股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9765) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603808', N'歌力思', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9766) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603818', N'曲美家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9767) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601101', N'昊华能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9768) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603838', N'四通股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9769) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601077', N'渝农商行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9770) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600032', N'浙江新能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9771) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603918', N'金桥信息', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9772) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603936', N'博敏电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9773) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603968', N'醋化股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9774) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605090', N'九丰能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9775) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603989', N'艾华集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9776) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603997', N'继峰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9777) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603998', N'方盛制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9778) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603999', N'读者传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9779) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600107', N'美尔雅', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9780) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600108', N'亚盛集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9781) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600127', N'金健米业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9782) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601058', N'赛轮轮胎', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9783) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600121', N'郑州煤电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9784) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600119', N'ST长投', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9785) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600122', N'宏图高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9786) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605388', N'均瑶健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9787) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600123', N'兰花科创', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9788) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605136', N'丽人丽妆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9789) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600128', N'弘业股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9790) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601020', N'华钰矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9791) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601028', N'玉龙股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9792) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600145', N'*ST新亿', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9793) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600148', N'长春一东', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9794) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600149', N'廊坊发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9795) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600152', N'维科技术', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9796) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600187', N'国中水务', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9797) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600165', N'新日恒力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9798) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600163', N'中闽能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9799) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600167', N'联美控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9800) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601015', N'陕西黑猫', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9801) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600201', N'生物股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9802) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600228', N'昌九生化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9803) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601011', N'宝泰隆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9804) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601005', N'重庆钢铁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9805) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601001', N'晋控煤业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9806) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601000', N'唐山港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9807) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600997', N'开滦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9808) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600985', N'淮北矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9809) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600989', N'宝丰能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9810) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600984', N'建设机械', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9811) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600231', N'凌钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9812) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600232', N'金鹰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9813) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600234', N'山水文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9814) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600237', N'铜峰电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9815) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600259', N'广晟有色', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9816) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600979', N'广安爱众', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9817) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600971', N'恒源煤电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9818) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600255', N'梦舟股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9819) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600257', N'大湖股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9820) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600963', N'岳阳林纸', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9821) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600295', N'鄂尔多斯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9822) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600303', N'曙光股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9823) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600302', N'标准股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9824) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600301', N'ST南化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9825) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600327', N'大东方', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9826) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600328', N'中盐化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9827) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600321', N'正源股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9828) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600331', N'宏达股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9829) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600329', N'中新药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9830) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600330', N'天通股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9831) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600333', N'长春燃气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9832) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600335', N'国机汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9833) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600378', N'昊华科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9834) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600379', N'宝光股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9835) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600961', N'株冶集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9836) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600385', N'*ST金泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9837) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600403', N'大有能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9838) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600400', N'红豆股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9839) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600052', N'浙江广厦', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9840) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600319', N'ST亚星', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9841) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600395', N'盘江股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9842) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600070', N'浙江富润', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9843) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600960', N'渤海汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9844) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600933', N'爱柯迪', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9845) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600058', N'五矿发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9846) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600306', N'商业城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9847) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600069', N'银鸽投资', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9848) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600067', N'冠城大通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9849) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600540', N'新赛股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9850) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600543', N'莫高股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9851) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600546', N'山煤国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9852) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600550', N'保变电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9853) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601778', N'晶科科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9854) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605001', N'威奥股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9855) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600896', N'览海医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9856) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600890', N'中房股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9857) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600892', N'大晟文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9858) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603950', N'长源东谷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9859) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605168', N'三人行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9860) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605288', N'凯迪股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9861) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600918', N'中泰证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9862) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600182', N'S佳通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9863) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600184', N'光电股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9864) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600185', N'格力地产', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9865) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600186', N'莲花健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9866) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601827', N'三峰环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9867) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601399', N'ST国重装', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9868) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605166', N'聚合顺', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9869) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600292', N'远达环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9870) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600883', N'博闻科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9871) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600088', N'中视传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9872) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600091', N'ST明科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9873) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600094', N'大名城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9874) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600084', N'ST中葡', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9875) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600282', N'南钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9876) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600881', N'亚泰集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9877) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600168', N'武汉控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9878) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600172', N'黄河旋风', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9879) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600173', N'卧龙地产', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9880) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600178', N'东安动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9881) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600877', N'电能股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9882) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600870', N'ST厦华', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9883) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603087', N'甘李药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9884) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600956', N'新天绿能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9885) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600179', N'安通控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9886) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600180', N'瑞茂通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9887) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600863', N'内蒙华电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9888) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600265', N'ST景谷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9889) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600856', N'ST中天', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9890) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600811', N'东方集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9891) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600815', N'厦工股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9892) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600817', N'宏盛科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9893) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600844', N'丹化科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9894) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600847', N'万里股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9895) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605199', N'葫芦娃', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9896) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600793', N'宜宾纸业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9897) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600807', N'ST天业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9898) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600810', N'神马股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9899) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600272', N'开开实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9900) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600273', N'嘉化能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9901) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600275', N'ST昌鱼', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9902) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603988', N'中电电机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9903) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605108', N'同庆楼', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9904) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603995', N'甬金股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9905) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603996', N'ST中新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9906) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600791', N'京能置业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9907) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600792', N'云煤能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9908) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600782', N'新钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9909) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600781', N'ST辅仁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9910) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600778', N'友好集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9911) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600780', N'通宝能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9912) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603956', N'威派格', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9913) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603958', N'哈森股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9914) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603985', N'恒润股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9915) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603959', N'百利科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9916) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603963', N'大理药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9917) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603967', N'中创物流', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9918) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603969', N'银龙股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9919) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603970', N'中农立华', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9920) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600166', N'福田汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9921) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605188', N'国光连锁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9922) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603979', N'金诚信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9923) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603977', N'国泰集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9924) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600774', N'汉商集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9925) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603937', N'丽岛新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9926) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603922', N'金鸿顺', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9927) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603926', N'铁流股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9928) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603928', N'兴业股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9929) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600768', N'宁波富邦', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9930) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600769', N'祥龙电业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9931) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600767', N'ST运盛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9932) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605118', N'力鼎光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9933) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603408', N'建霖家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9934) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603948', N'建业股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9935) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603949', N'雪龙集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9936) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605222', N'起帆电缆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9937) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601456', N'国联证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9938) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605318', N'法狮龙', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9939) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605399', N'晨光新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9940) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605158', N'华达新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9941) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603887', N'城地香江', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9942) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603901', N'永创智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9943) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603903', N'中持股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9944) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603909', N'合诚股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9945) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603916', N'苏博特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9946) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603917', N'合力科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9947) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600766', N'园城黄金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9948) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605066', N'天正电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9949) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605100', N'华丰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9950) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605366', N'宏柏新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9951) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600758', N'辽宁能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9952) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600759', N'洲际油气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9953) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605088', N'冠盛股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9954) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600858', N'银座股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9955) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600742', N'一汽富维', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9956) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600751', N'海航科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9957) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600753', N'东方银星', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9958) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600757', N'长江传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9959) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605333', N'沪光股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9960) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603931', N'格林达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9961) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603876', N'鼎胜新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9962) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600740', N'山西焦化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9963) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605178', N'时空科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9964) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603878', N'武进不锈', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9965) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603879', N'永悦科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9966) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600738', N'丽尚国潮', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9967) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600739', N'辽宁成大', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9968) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600732', N'爱旭股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9969) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600735', N'新华锦', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9970) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605008', N'长鸿高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9971) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603869', N'新智认知', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9972) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603867', N'新化股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9973) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600726', N'华电能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9974) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600727', N'鲁北化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9975) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600731', N'湖南海利', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9976) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600239', N'云南城投', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9977) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600241', N'时代万恒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9978) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600243', N'青海华鼎', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9979) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600247', N'ST成城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9980) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600248', N'陕西建工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9981) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605123', N'派克新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9982) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603855', N'华荣股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9983) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603859', N'能科股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9984) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605255', N'天普股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9985) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600249', N'两面针', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9986) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600250', N'南纺股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9987) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603863', N'ST松炀', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9988) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603155', N'新亚强', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9989) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605006', N'山东玻纤', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9990) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603809', N'豪能股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9991) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603810', N'丰山集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9992) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603815', N'交建股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9993) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603819', N'神力股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9994) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603822', N'嘉澳环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9995) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603823', N'百合花', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9996) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603826', N'坤彩科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9997) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601702', N'华峰铝业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9998) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603828', N'柯利达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 9999) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603839', N'安正时尚', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10000) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600725', N'云维股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10001) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605003', N'众望布艺', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10002) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603779', N'ST威龙', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10003) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603778', N'乾景园林', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10004) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603786', N'科博达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10005) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603788', N'宁波高发', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10006) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603797', N'联泰环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10007) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605009', N'豪悦护理', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10008) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605128', N'上海沿浦', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10009) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600139', N'西部资源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10010) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600722', N'金牛化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10011) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600721', N'*ST百花', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10012) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600238', N'海南椰岛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10013) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600714', N'金瑞矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10014) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600715', N'文投控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10015) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603768', N'常青股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10016) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600707', N'彩虹股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10017) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600701', N'*ST工新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10018) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600698', N'湖南天雁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10019) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600710', N'苏美达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10020) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603733', N'仙鹤股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10021) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603758', N'秦安股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10022) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603767', N'中马传动', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10023) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605358', N'立昂微', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10024) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600137', N'浪莎股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10025) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603757', N'大元泵业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10026) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605369', N'拱东医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10027) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605050', N'福然德', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10028) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603721', N'中广天择', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10029) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603729', N'龙韵股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10030) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603730', N'岱美股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10031) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600696', N'岩石股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10032) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600692', N'亚通股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10033) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600694', N'大商股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10034) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600681', N'百川能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10035) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600687', N'*ST刚泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10036) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600691', N'阳煤化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10037) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600080', N'金花股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10038) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600679', N'上海凤凰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10039) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603716', N'塞力医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10040) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603685', N'晨丰科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10041) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603693', N'江苏新能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10042) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603687', N'大胜达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10043) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600676', N'交运股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10044) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603706', N'东方环宇', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10045) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600230', N'沧州大化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10046) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600675', N'中华企业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10047) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600666', N'*ST瑞德', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10048) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600665', N'天地源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10049) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605116', N'奥锐特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10050) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603669', N'灵康药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10051) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603682', N'锦和商业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10052) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603681', N'永冠新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10053) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603680', N'今创集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10054) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603679', N'华体科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10055) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600664', N'哈药股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10056) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600652', N'*ST游久', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10057) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600654', N'*ST中安', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10058) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600653', N'申华控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10059) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603683', N'晶华新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10060) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600636', N'国新文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10061) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603665', N'康隆达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10062) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603667', N'五洲新春', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10063) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603668', N'天马科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10064) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605198', N'德利股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10065) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600634', N'*ST富控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10066) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600621', N'华鑫股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10067) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600629', N'华建集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10068) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600615', N'丰华股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10069) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603663', N'三祥新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10070) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600617', N'国新能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10071) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600614', N'*ST鹏起', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10072) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600620', N'天宸股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10073) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600610', N'中毅达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10074) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603662', N'柯力传感', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10075) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600609', N'金杯汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10076) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600608', N'ST沪科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10077) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603112', N'华翔股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10078) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600605', N'汇通能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10079) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603655', N'朗博科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10080) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603657', N'春光科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10081) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603565', N'中谷物流', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10082) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603650', N'彤程新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10083) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605218', N'伟时电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10084) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600599', N'*ST熊猫', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10085) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603615', N'茶花股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10086) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603617', N'君禾股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10087) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600074', N'退市保千', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10088) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603626', N'科森科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10089) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603596', N'伯特利', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10090) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603608', N'天创时尚', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10091) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603610', N'麒盛科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10092) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600595', N'*ST中孚', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10093) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600594', N'益佰制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10094) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603577', N'汇金通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10095) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603585', N'苏利股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10096) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603587', N'地素时尚', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10097) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603588', N'高能环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10098) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603567', N'珍宝岛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10099) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603569', N'长久物流', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10100) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603557', N'ST起步', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10101) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603558', N'健盛集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10102) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600592', N'龙溪股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10103) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600589', N'广东榕泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10104) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600586', N'金晶科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10105) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600579', N'克劳斯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10106) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600581', N'八一钢铁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10107) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600575', N'淮河能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10108) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600576', N'祥源文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10109) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603506', N'南都物业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10110) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603507', N'振江股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10111) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603518', N'锦泓集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10112) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603527', N'众源新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10113) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603535', N'嘉诚国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10114) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603555', N'贵人鸟', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10115) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603556', N'海兴电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10116) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603500', N'祥和实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10117) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603505', N'金石资源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10118) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600569', N'安阳钢铁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10119) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603399', N'吉翔股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10120) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603396', N'金辰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10121) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603458', N'勘设股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10122) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603489', N'八方股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10123) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603379', N'三美股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10124) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603388', N'元成股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10125) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603390', N'通达电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10126) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603359', N'东珠生态', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10127) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600560', N'金自天正', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10128) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600561', N'江西长运', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10129) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600567', N'山鹰国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10130) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603356', N'华菱精工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10131) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603358', N'华达科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10132) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600558', N'大西洋', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10133) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600556', N'天下秀', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10134) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603353', N'和顺石油', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10135) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603348', N'文灿股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10136) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603351', N'威尔药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10137) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600555', N'海航创新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10138) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600551', N'时代出版', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10139) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600552', N'凯盛科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10140) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603439', N'贵州三力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10141) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603392', N'万泰生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10142) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603212', N'赛伍技术', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10143) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603377', N'东方时尚', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10144) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601900', N'南方传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10145) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600539', N'狮头股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10146) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603919', N'金徽酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10147) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600532', N'宏达矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10148) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603861', N'白云电器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10149) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603028', N'赛福天', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10150) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603798', N'康普顿', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10151) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603701', N'德宏股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10152) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603726', N'朗迪集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10153) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600523', N'贵航股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10154) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603528', N'多伦科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10155) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600531', N'豫光金铅', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10156) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603339', N'四方科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10157) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605111', N'新洁能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10158) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605018', N'长华股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10159) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603131', N'上海沪工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10160) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600518', N'ST康美', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10161) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600528', N'中铁工业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10162) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603016', N'新宏泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10163) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603069', N'海汽集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10164) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600538', N'国发股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10165) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600515', N'海航基础', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10166) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600513', N'联环药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10167) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600936', N'广西广电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10168) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601997', N'贵阳银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10169) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603511', N'爱慕股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10170) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601595', N'上海电影', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10171) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603515', N'欧普照明', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10172) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600512', N'腾达建设', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10173) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600510', N'黑牡丹', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10174) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600509', N'天富能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10175) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603843', N'正平股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10176) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601163', N'三角轮胎', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10177) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603393', N'新天然气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10178) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600508', N'上海能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10179) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600502', N'安徽建工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10180) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600493', N'凤竹纺织', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10181) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600521', N'华海药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10182) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603738', N'泰晶科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10183) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601128', N'常熟银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10184) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605499', N'东鹏饮料', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10185) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603836', N'海程邦达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10186) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603313', N'梦百合', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10187) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600926', N'杭州银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10188) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603888', N'新华网', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10189) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605189', N'富春染织', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10190) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603060', N'国检集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10191) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600491', N'龙元建设', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10192) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605296', N'神农集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10193) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603633', N'徕木股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10194) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600490', N'鹏欣资源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10195) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603987', N'康德莱', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10196) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603336', N'宏辉果蔬', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10197) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600485', N'*ST信威', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10198) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603660', N'苏州科达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10199) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603559', N'中通国脉', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10200) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603033', N'三维股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10201) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600475', N'华光环能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10202) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603389', N'亚振家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10203) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600470', N'六国化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10204) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603058', N'永吉股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10205) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600469', N'风神股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10206) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601777', N'力帆科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10207) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603886', N'元祖股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10208) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603239', N'浙江仙通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10209) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601375', N'中原证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10210) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603035', N'常熟汽饰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10211) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603032', N'德新交运', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10212) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603877', N'太平鸟', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10213) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603689', N'皖天然气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10214) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603579', N'荣泰健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10215) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603639', N'海利尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10216) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600459', N'贵研铂业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10217) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600462', N'*ST九有', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10218) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600468', N'百利电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10219) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601858', N'中国科传', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10220) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600461', N'洪城水业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10221) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603638', N'艾迪精密', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10222) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603429', N'集友股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10223) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603966', N'法兰泰克', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10224) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603089', N'正裕工业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10225) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603360', N'百傲化学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10226) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603677', N'奇精机械', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10227) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600456', N'宝钛股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10228) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603637', N'镇海股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10229) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600458', N'时代新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10230) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600444', N'国机通用', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10231) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600448', N'华纺股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10232) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600438', N'通威股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10233) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601212', N'白银有色', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10234) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603603', N'博天环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10235) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603817', N'海峡环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10236) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600426', N'华鲁恒升', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10237) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603717', N'天域生态', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10238) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603656', N'泰禾智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10239) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605099', N'共创草坪', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10240) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603133', N'碳元科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10241) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600433', N'冠豪高新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10242) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603811', N'诚意药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10243) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603955', N'大千生态', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10244) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603908', N'牧高笛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10245) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603991', N'至正股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10246) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603578', N'三星新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10247) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601366', N'利群股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10248) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600408', N'ST安泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10249) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603787', N'新日股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10250) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603320', N'迪贝电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10251) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600396', N'金山股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10252) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600397', N'安源煤业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10253) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600409', N'三友化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10254) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603906', N'龙蟠科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10255) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603586', N'金麒麟', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10256) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603538', N'美诺华', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10257) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603385', N'惠达卫浴', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10258) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603178', N'圣龙股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10259) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603238', N'诺邦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10260) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603229', N'奥翔药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10261) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603728', N'鸣志电器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10262) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603896', N'寿仙谷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10263) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603488', N'展鹏科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10264) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603197', N'保隆科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10265) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600382', N'广东明珠', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10266) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603580', N'艾艾精工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10267) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603200', N'上海洗霸', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10268) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603042', N'华脉科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10269) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603536', N'惠发食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10270) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600373', N'中文传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10271) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603326', N'我乐家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10272) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603316', N'诚邦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10273) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603335', N'迪生力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10274) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603380', N'易德龙', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10275) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603286', N'日盈电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10276) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603938', N'三孚股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10277) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603331', N'百达精工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10278) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603933', N'睿能科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10279) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603595', N'东尼电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10280) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603612', N'索通发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10281) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603676', N'卫信康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10282) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603063', N'禾望电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10283) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603233', N'大参林', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10284) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603357', N'设计总院', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10285) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603860', N'中公高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10286) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603880', N'南卫股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10287) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600318', N'新力金融', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10288) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600308', N'华泰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10289) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603776', N'永安行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10290) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600307', N'酒钢宏兴', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10291) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603976', N'正川股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10292) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603079', N'圣达生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10293) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603725', N'天安新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10294) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603813', N'原尚股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10295) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603136', N'天目湖', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10296) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603378', N'亚士创能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10297) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603367', N'辰欣药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10298) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603103', N'横店影视', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10299) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603110', N'东方材料', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10300) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603499', N'翔港科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10301) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603829', N'洛凯股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10302) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603722', N'阿科力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10303) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603659', N'璞泰来', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10304) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603076', N'乐惠国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10305) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603661', N'恒林股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10306) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601019', N'山东出版', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10307) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603890', N'春秋电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10308) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603477', N'巨星农牧', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10309) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603895', N'天永智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10310) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603516', N'淳中科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10311) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603871', N'嘉友国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10312) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603709', N'中源家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10313) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603712', N'七一二', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10314) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603059', N'倍加洁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10315) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600929', N'雪天盐业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10316) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603897', N'长城科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10317) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603301', N'振德医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10318) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603773', N'沃格光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10319) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603666', N'亿嘉和', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10320) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601990', N'南京证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10321) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603713', N'密尔克卫', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10322) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601606', N'长城军工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10323) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603590', N'康辰药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10324) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603192', N'汇得科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10325) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601068', N'中铝国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10326) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603297', N'永新光学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10327) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603790', N'雅运股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10328) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603583', N'捷昌驱动', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10329) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600095', N'湘财股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10330) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601975', N'招商南油', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10331) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603629', N'利通电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10332) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603185', N'上机数控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10333) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601298', N'青岛港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10334) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603700', N'宁波水表', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10335) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601615', N'明阳智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10336) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601865', N'福莱特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10337) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603317', N'天味食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10338) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603697', N'有友食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10339) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603982', N'泉峰汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10340) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603327', N'福蓉科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10341) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603915', N'国茂股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10342) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601236', N'红塔证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10343) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603530', N'神马电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10344) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603115', N'海星股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10345) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603992', N'松霖科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10346) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603755', N'日辰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10347) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605259', N'绿田机械', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10348) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600905', N'三峡能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10349) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603529', N'爱玛科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10350) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601665', N'齐鲁银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10351) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601528', N'瑞丰银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10352) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603171', N'税友股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10353) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh605011', N'杭州热电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10354) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600000', N'浦发银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10355) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600004', N'白云机场', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10356) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600006', N'东风汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10357) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600007', N'中国国贸', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10358) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600008', N'首创股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10359) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600009', N'上海机场', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10360) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600011', N'华能国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10361) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600012', N'皖通高速', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10362) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600015', N'华夏银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10363) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600016', N'民生银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10364) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600017', N'日照港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10365) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600018', N'上港集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10366) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600019', N'宝钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10367) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600020', N'中原高速', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10368) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600021', N'上海电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10369) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600023', N'浙能电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10370) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600026', N'中远海能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10371) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600027', N'华电国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10372) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600028', N'中国石化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10373) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600029', N'南方航空', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10374) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600030', N'中信证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10375) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600031', N'三一重工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10376) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600033', N'福建高速', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10377) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600035', N'楚天高速', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10378) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600036', N'招商银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10379) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600037', N'歌华有线', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10380) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600038', N'中直股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10381) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600050', N'中国联通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10382) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600054', N'黄山旅游', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10383) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600055', N'万东医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10384) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600056', N'中国医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10385) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600057', N'厦门象屿', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10386) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600059', N'古越龙山', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10387) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600060', N'海信视像', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10388) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600062', N'华润双鹤', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10389) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600064', N'南京高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10390) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600066', N'宇通客车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10391) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600068', N'葛洲坝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10392) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600072', N'中船科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10393) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600073', N'上海梅林', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10394) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600075', N'新疆天业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10395) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600085', N'同仁堂', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10396) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600089', N'特变电工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10397) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600093', N'易见股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10398) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600097', N'开创国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10399) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600098', N'广州发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10400) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600100', N'同方股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10401) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600104', N'上汽集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10402) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600105', N'永鼎股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10403) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600106', N'重庆路桥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10404) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600109', N'国金证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10405) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600114', N'东睦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10406) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600116', N'三峡水利', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10407) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600118', N'中国卫星', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10408) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600125', N'铁龙物流', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10409) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600126', N'杭钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10410) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600129', N'太极集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10411) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600131', N'国网信通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10412) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600132', N'重庆啤酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10413) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600133', N'东湖高新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10414) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600138', N'中青旅', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10415) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600141', N'兴发集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10416) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600143', N'金发科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10417) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600150', N'中国船舶', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10418) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600153', N'建发股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10419) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600158', N'中体产业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10420) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600170', N'上海建工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10421) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600171', N'上海贝岭', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10422) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600176', N'中国巨石', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10423) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600177', N'雅戈尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10424) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600183', N'生益科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10425) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600195', N'中牧股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10426) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600196', N'复星医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10427) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600216', N'浙江医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10428) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600217', N'中再资环', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10429) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600219', N'南山铝业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10430) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600233', N'圆通速递', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10431) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600252', N'中恒集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10432) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600256', N'广汇能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10433) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600258', N'首旅酒店', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10434) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600260', N'凯乐科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10435) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600261', N'阳光照明', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10436) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600269', N'赣粤高速', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10437) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600271', N'航天信息', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10438) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600276', N'恒瑞医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10439) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600284', N'浦东建设', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10440) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601658', N'邮储银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10441) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600969', N'郴电国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10442) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600297', N'广汇汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10443) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600298', N'安琪酵母', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10444) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600299', N'安迪苏', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10445) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600305', N'恒顺醋业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10446) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600309', N'万华化学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10447) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600312', N'平高电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10448) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600315', N'上海家化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10449) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600316', N'洪都航空', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10450) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600320', N'振华重工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10451) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600325', N'华发股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10452) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600332', N'白云山', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10453) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600340', N'华夏幸福', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10454) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600343', N'航天动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10455) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600345', N'长江通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10456) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600350', N'山东高速', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10457) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600352', N'浙江龙盛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10458) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600361', N'华联综超', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10459) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600362', N'江西铜业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10460) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600369', N'西南证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10461) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600372', N'中航电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10462) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600376', N'首开股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10463) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600377', N'宁沪高速', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10464) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600380', N'健康元', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10465) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600383', N'金地集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10466) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600388', N'龙净环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10467) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600390', N'五矿资本', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10468) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600391', N'航发科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10469) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600406', N'国电南瑞', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10470) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600410', N'华胜天成', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10471) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600418', N'江淮汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10472) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600420', N'国药现代', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10473) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600422', N'昆药集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10474) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600428', N'中远海特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10475) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600435', N'北方导航', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10476) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600436', N'片仔癀', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10477) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600439', N'瑞贝卡', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10478) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600446', N'金证股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10479) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600452', N'涪陵电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10480) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600460', N'士兰微', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10481) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600477', N'杭萧钢构', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10482) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600482', N'中国动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10483) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600483', N'福能股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10484) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600486', N'扬农化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10485) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600487', N'亨通光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10486) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600489', N'中金黄金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10487) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600496', N'精工钢构', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10488) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600497', N'驰宏锌锗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10489) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600498', N'烽火通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10490) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600500', N'中化国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10491) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600507', N'方大特钢', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10492) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600511', N'国药股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10493) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600516', N'方大炭素', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10494) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600519', N'贵州茅台', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10495) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600522', N'中天科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10496) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600529', N'山东药玻', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10497) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600535', N'天士力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10498) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600536', N'中国软件', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10499) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600545', N'卓郎智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10500) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600547', N'山东黄金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10501) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600548', N'深高速', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10502) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600557', N'康缘药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10503) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600563', N'法拉电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10504) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600565', N'迪马股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10505) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600566', N'济川药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10506) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600570', N'恒生电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10507) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600571', N'信雅达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10508) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600572', N'康恩贝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10509) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600577', N'精达股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10510) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600578', N'京能电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10511) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600580', N'卧龙电驱', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10512) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600582', N'天地科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10513) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600583', N'海油工程', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10514) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600584', N'长电科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10515) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600585', N'海螺水泥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10516) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600588', N'用友网络', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10517) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600590', N'泰豪科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10518) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600597', N'光明乳业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10519) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600598', N'北大荒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10520) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600600', N'青岛啤酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10521) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600606', N'绿地控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10522) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600611', N'大众交通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10523) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600612', N'老凤祥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10524) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600616', N'金枫酒业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10525) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600618', N'氯碱化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10526) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600619', N'海立股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10527) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600622', N'光大嘉宝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10528) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600633', N'浙数文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10529) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600635', N'大众公用', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10530) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600637', N'东方明珠', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10531) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600642', N'申能股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10532) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600643', N'爱建集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10533) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600648', N'外高桥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10534) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600650', N'锦江在线', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10535) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600655', N'豫园股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10536) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600657', N'信达地产', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10537) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600658', N'电子城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10538) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600660', N'福耀玻璃', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10539) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600663', N'陆家嘴', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10540) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600667', N'太极实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10541) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600674', N'川投能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10542) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600685', N'中船防务', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10543) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600686', N'金龙汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10544) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600688', N'上海石化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10545) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600690', N'海尔智家', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10546) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600699', N'均胜电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10547) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600702', N'舍得酒业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10548) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600703', N'三安光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10549) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600704', N'物产中大', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10550) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600705', N'中航资本', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10551) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600713', N'南京医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10552) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600717', N'天津港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10553) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600718', N'东软集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10554) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600720', N'祁连山', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10555) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600723', N'首商股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10556) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600728', N'佳都科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10557) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600729', N'重庆百货', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10558) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600733', N'北汽蓝谷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10559) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600741', N'华域汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10560) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600743', N'华远地产', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10561) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600745', N'闻泰科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10562) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600749', N'西藏旅游', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10563) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600750', N'江中药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10564) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600754', N'锦江股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10565) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600760', N'中航沈飞', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10566) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600761', N'安徽合力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10567) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600763', N'通策医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10568) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600765', N'中航重机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10569) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600775', N'南京熊猫', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10570) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600776', N'东方通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10571) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600779', N'水井坊', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10572) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600787', N'中储股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10573) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600789', N'鲁抗医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10574) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600790', N'轻纺城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10575) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600794', N'保税科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10576) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600795', N'国电电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10577) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600797', N'浙大网新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10578) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600798', N'宁波海运', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10579) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600801', N'华新水泥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10580) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600803', N'新奥股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10581) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600804', N'鹏博士', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10582) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600805', N'悦达投资', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10583) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600809', N'山西汾酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10584) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600812', N'华北制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10585) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600814', N'杭州解百', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10586) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600816', N'安信信托', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10587) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600820', N'隧道股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10588) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600823', N'世茂股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10589) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600826', N'兰生股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10590) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600827', N'百联股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10591) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600835', N'上海机电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10592) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600837', N'海通证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10593) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600839', N'四川长虹', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10594) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600845', N'宝信软件', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10595) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600848', N'上海临港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10596) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600850', N'电科数字', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10597) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600859', N'王府井', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10598) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600872', N'中炬高新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10599) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600873', N'梅花生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10600) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600875', N'东方电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10601) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600884', N'杉杉股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10602) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600886', N'国投电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10603) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600887', N'伊利股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10604) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603551', N'奥普家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10605) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600893', N'航发动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10606) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600895', N'张江高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10607) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600897', N'厦门空港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10608) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600900', N'长江电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10609) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600958', N'东方证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10610) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600967', N'内蒙一机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10611) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600970', N'中材国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10612) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600975', N'新五丰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10613) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600987', N'航民股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10614) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600993', N'马应龙', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10615) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600995', N'文山电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10616) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600998', N'九州通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10617) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600999', N'招商证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10618) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601003', N'柳钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10619) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601006', N'大秦铁路', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10620) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601007', N'金陵饭店', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10621) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601009', N'南京银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10622) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601010', N'文峰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10623) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601012', N'隆基股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10624) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601018', N'宁波港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10625) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601021', N'春秋航空', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10626) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601038', N'一拖股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10627) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601088', N'中国神华', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10628) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601099', N'太平洋', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10629) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601107', N'四川成渝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10630) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601111', N'中国国航', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10631) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601116', N'三江购物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10632) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601117', N'中国化学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10633) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601137', N'博威合金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10634) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601139', N'深圳燃气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10635) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601158', N'重庆水务', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10636) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601166', N'兴业银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10637) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601169', N'北京银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10638) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601186', N'中国铁建', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10639) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601198', N'东兴证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10640) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601211', N'国泰君安', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10641) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601216', N'君正集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10642) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601231', N'环旭电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10643) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601238', N'广汽集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10644) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601288', N'农业银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10645) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601360', N'三六零', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10646) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601318', N'中国平安', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10647) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601328', N'交通银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10648) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601333', N'广深铁路', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10649) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601336', N'新华保险', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10650) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601377', N'兴业证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10651) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601390', N'中国中铁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10652) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601398', N'工商银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10653) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601519', N'大智慧', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10654) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601555', N'东吴证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10655) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601579', N'会稽山', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10656) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601588', N'北辰实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10657) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601600', N'中国铝业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10658) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601601', N'中国太保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10659) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601607', N'上海医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10660) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601618', N'中国中冶', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10661) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601628', N'中国人寿', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10662) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601633', N'长城汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10663) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601636', N'旗滨集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10664) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601668', N'中国建筑', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10665) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601669', N'中国电建', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10666) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601688', N'华泰证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10667) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601717', N'郑煤机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10668) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601718', N'际华集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10669) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601766', N'中国中车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10670) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601788', N'光大证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10671) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601800', N'中国交建', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10672) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601801', N'皖新传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10673) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601808', N'中海油服', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10674) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601857', N'中国石油', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10675) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601872', N'招商轮船', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10676) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601877', N'正泰电器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10677) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601880', N'辽港股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10678) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601888', N'中国中免', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10679) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601890', N'亚星锚链', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10680) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601899', N'紫金矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10681) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601901', N'方正证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10682) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601919', N'中远海控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10683) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601928', N'凤凰传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10684) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601933', N'永辉超市', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10685) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601939', N'建设银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10686) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601965', N'中国汽研', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10687) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601985', N'中国核电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10688) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601988', N'中国银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10689) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601989', N'中国重工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10690) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601991', N'大唐发电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10691) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601992', N'金隅集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10692) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601998', N'中信银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10693) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603000', N'人民网', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10694) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603005', N'晶方科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10695) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603008', N'喜临门', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10696) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603011', N'合锻智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10697) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603019', N'中科曙光', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10698) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603026', N'石大胜华', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10699) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603066', N'音飞储存', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10700) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603100', N'川仪股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10701) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603118', N'共进股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10702) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603128', N'华贸物流', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10703) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603169', N'兰石重装', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10704) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603198', N'迎驾贡酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10705) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603199', N'九华旅游', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10706) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603288', N'海天味业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10707) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603306', N'华懋科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10708) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603328', N'依顿电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10709) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603338', N'浙江鼎力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10710) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603355', N'莱克电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10711) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603368', N'柳药股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10712) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603369', N'今世缘', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10713) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603398', N'邦宝益智', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10714) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603589', N'口子窖', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10715) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603598', N'引力传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10716) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603599', N'广信股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10717) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603606', N'东方电缆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10718) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603636', N'南威软件', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10719) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603678', N'火炬电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10720) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603686', N'龙马环卫', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10721) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603696', N'安记食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10722) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603698', N'航天工程', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10723) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603699', N'纽威股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10724) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603718', N'海利生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10725) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603766', N'隆鑫通用', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10726) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603799', N'华友钴业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10727) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603806', N'福斯特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10728) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603866', N'桃李面包', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10729) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603883', N'老百姓', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10730) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603885', N'吉祥航空', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10731) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603889', N'新澳股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10732) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603898', N'好莱客', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10733) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603899', N'晨光文具', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10734) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603939', N'益丰药房', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10735) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603993', N'洛阳钼业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10736) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603225', N'新凤鸣', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10737) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603195', N'公牛集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10738) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601816', N'京沪高铁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10739) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600673', N'东阳光', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10740) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601916', N'浙商银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10741) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603027', N'千禾味业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10742) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603520', N'司太立', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10743) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603868', N'飞科电器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10744) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603737', N'三棵树', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10745) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601611', N'中国核建', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10746) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601127', N'小康股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10747) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601966', N'玲珑轮胎', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10748) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603322', N'超讯通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10749) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600919', N'江苏银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10750) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601811', N'新华文轩', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10751) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600977', N'中国电影', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10752) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603986', N'兆易创新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10753) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603658', N'安图生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10754) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603189', N'网达软件', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10755) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600908', N'无锡银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10756) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603421', N'鼎信通讯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10757) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603777', N'来伊份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10758) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603816', N'顾家家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10759) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603160', N'汇顶科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10760) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603258', N'电魂网络', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10761) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603290', N'斯达半导', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10762) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601229', N'上海银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10763) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603858', N'步长制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10764) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603727', N'博迈科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10765) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603900', N'莱绅通灵', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10766) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600909', N'华安证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10767) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603990', N'麦迪科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10768) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603708', N'家家悦', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10769) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603416', N'信捷电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10770) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600996', N'贵广网络', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10771) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603298', N'杭叉集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10772) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603218', N'日月股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10773) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603929', N'亚翔集成', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10774) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603186', N'华正新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10775) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603444', N'吉比特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10776) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603228', N'景旺电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10777) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603690', N'至纯科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10778) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603039', N'泛微网络', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10779) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603337', N'杰克股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10780) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601881', N'中国银河', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10781) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603881', N'数据港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10782) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603208', N'江山欧派', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10783) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600939', N'重庆建工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10784) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603501', N'韦尔股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10785) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603517', N'绝味食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10786) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603960', N'克来机电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10787) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603630', N'拉芳家化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10788) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603138', N'海量数据', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10789) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603803', N'瑞斯康达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10790) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603232', N'格尔软件', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10791) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603920', N'世运电路', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10792) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603078', N'江化微', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10793) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601200', N'上海环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10794) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603303', N'得邦照明', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10795) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603833', N'欧派家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10796) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601228', N'广州港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10797) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603345', N'安井食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10798) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601952', N'苏垦农发', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10799) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603383', N'顶点软件', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10800) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603496', N'恒为科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10801) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603226', N'菲林格尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10802) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603980', N'吉华集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10803) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601878', N'浙商证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10804) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603043', N'广州酒家', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10805) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603801', N'志邦家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10806) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603387', N'基蛋生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10807) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603707', N'健友股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10808) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603825', N'华扬联众', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10809) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603978', N'深圳新星', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10810) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603602', N'纵横通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10811) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601326', N'秦港股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10812) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603129', N'春风动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10813) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601949', N'中国出版', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10814) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603127', N'昭衍新药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10815) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603183', N'建研院', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10816) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603882', N'金域医学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10817) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603277', N'银都股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10818) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603386', N'广东骏亚', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10819) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603648', N'畅联股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10820) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603321', N'梅轮电梯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10821) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603106', N'恒银科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10822) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603533', N'掌阅科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10823) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603363', N'傲农生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10824) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603466', N'风语筑', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10825) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601108', N'财通证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10826) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603607', N'京华激光', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10827) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603260', N'合盛硅业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10828) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603289', N'泰瑞机器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10829) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603912', N'佳力图', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10830) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603856', N'东宏股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10831) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600903', N'贵州燃气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10832) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603083', N'剑桥科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10833) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603605', N'珀莱雅', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10834) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603619', N'中曼石油', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10835) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603365', N'水星家纺', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10836) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603711', N'香飘飘', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10837) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603848', N'好太太', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10838) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600025', N'华能水电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10839) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603283', N'赛腾股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10840) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603329', N'上海雅仕', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10841) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603080', N'新疆火炬', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10842) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601155', N'新城控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10843) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603180', N'金牌厨柜', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10844) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603056', N'德邦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10845) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601828', N'美凯龙', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10846) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601838', N'成都银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10847) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603156', N'养元饮品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10848) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600901', N'江苏租赁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10849) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603214', N'爱婴室', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10850) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603259', N'药明康德', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10851) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603486', N'科沃斯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10852) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601138', N'工业富联', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10853) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601330', N'绿色动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10854) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601066', N'中信建投', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10855) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601869', N'长飞光纤', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10856) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601577', N'长沙银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10857) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601162', N'天风证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10858) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603220', N'中贝通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10859) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601319', N'中国人保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10860) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603187', N'海容冷链', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10861) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601860', N'紫金银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10862) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603121', N'华培动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10863) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603739', N'蔚蓝生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10864) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601598', N'中国外运', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10865) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600928', N'西安银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10866) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603068', N'博通集成', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10867) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh600968', N'海油发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10868) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh601698', N'中国卫通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10869) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603236', N'移远通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10870) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603983', N'丸美股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10871) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603613', N'国联股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10872) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603267', N'鸿远电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10873) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603093', N'南华期货', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10874) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sh603927', N'中科软', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A6E8D3 AS DateTime), 10875) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003011', N'海象新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10876) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003001', N'中岩大地', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10877) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003012', N'东鹏控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10878) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003015', N'日久光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10879) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003013', N'地铁设计', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10880) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003017', N'大洋生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10881) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003016', N'欣贺股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10882) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003018', N'金富科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10883) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003019', N'宸展光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10884) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003004', N'声迅股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10885) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003021', N'兆威机电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10886) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002005', N'ST德豪', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10887) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001206', N'依依股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10888) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003022', N'联泓新科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10889) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003023', N'彩虹集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10890) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003025', N'思进智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10891) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003020', N'立方制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10892) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003026', N'中晶科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10893) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003027', N'同兴环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10894) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000411', N'英特集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10895) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003029', N'吉大正元', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10896) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000407', N'胜利股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10897) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000408', N'藏格控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10898) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000409', N'云鼎科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10899) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000410', N'*ST沈机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10900) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000404', N'长虹华意', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10901) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000403', N'派林生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10902) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000158', N'常山北明', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10903) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003028', N'振邦智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10904) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000153', N'丰原药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10905) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000096', N'广聚能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10906) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000056', N'皇庭国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10907) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000048', N'京基智农', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10908) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000042', N'中洲控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10909) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000030', N'富奥股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10910) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000010', N'美丽生态', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10911) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000005', N'世纪星源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10912) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000004', N'国华网安', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10913) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000597', N'东北制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10914) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000595', N'宝塔实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10915) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000587', N'金洲慈航', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10916) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000585', N'ST东电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10917) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000572', N'*ST海马', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10918) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000571', N'*ST大洲', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10919) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000570', N'苏常柴A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10920) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000567', N'海德股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10921) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000564', N'供销大集', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10922) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000554', N'泰山石油', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10923) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000552', N'靖远煤电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10924) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000546', N'金圆股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10925) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000545', N'金浦钛业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10926) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000534', N'万泽股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10927) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000520', N'长航凤凰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10928) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000509', N'*ST华塑', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10929) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000504', N'*ST生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10930) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000502', N'绿景控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10931) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000426', N'兴业矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10932) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000428', N'华天酒店', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10933) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000422', N'湖北宜化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10934) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000419', N'通程控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10935) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000420', N'吉林化纤', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10936) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000417', N'合肥百货', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10937) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003031', N'中瓷电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10938) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000638', N'万方发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10939) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000670', N'*ST盈方', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10940) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000683', N'远兴能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10941) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000678', N'襄阳轴承', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10942) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000679', N'大连友谊', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10943) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003030', N'祖名股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10944) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000619', N'海螺型材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10945) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000635', N'英力特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10946) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000632', N'三木集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10947) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000633', N'合金投资', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10948) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000630', N'铜陵有色', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10949) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003033', N'征和工业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10950) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003032', N'传智教育', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10951) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000611', N'ST天首', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10952) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000609', N'中迪投资', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10953) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003035', N'南网能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10954) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000605', N'渤海股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10955) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000601', N'韶能股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10956) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000600', N'建投能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10957) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000692', N'惠天热电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10958) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000688', N'国城矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10959) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000698', N'沈阳化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10960) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000712', N'锦龙股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10961) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000709', N'河钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10962) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000707', N'ST双环', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10963) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002188', N'*ST巴士', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10964) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002175', N'*ST东网', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10965) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002171', N'楚江新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10966) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000715', N'中兴商业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10967) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003036', N'泰坦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10968) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000731', N'四川美丰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10969) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000720', N'新能泰山', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10970) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003037', N'三和管桩', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10971) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000717', N'韶钢松山', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10972) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000751', N'锌业股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10973) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000752', N'*ST西发', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10974) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003038', N'鑫铂股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10975) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000739', N'普洛药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10976) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000736', N'中交地产', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10977) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000737', N'南风化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10978) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000792', N'*ST盐湖', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10979) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000786', N'北新建材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10980) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000801', N'四川九洲', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10981) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000780', N'平庄能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10982) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000782', N'美达股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10983) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000767', N'晋控电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10984) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000760', N'*ST斯太', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10985) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000761', N'本钢板材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10986) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000757', N'浩物股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10987) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000837', N'*ST秦机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10988) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000838', N'财信发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10989) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000833', N'粤桂股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10990) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000835', N'长城动漫', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10991) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000822', N'山东海化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10992) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000820', N'*ST节能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10993) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000821', N'京山轻机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10994) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000819', N'岳阳兴长', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10995) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003039', N'顺控发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10996) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000818', N'航锦科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10997) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000816', N'智慧农业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10998) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000809', N'铁岭新城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 10999) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000806', N'ST银河', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11000) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000803', N'北清环能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11001) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003040', N'楚天龙', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11002) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003041', N'真爱美家', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11003) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003042', N'中农联合', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11004) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003043', N'华亚智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11005) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000850', N'华茂股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11006) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000861', N'海印股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11007) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000852', N'石化机械', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11008) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000887', N'中鼎股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11009) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000883', N'湖北能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11010) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000885', N'城发环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11011) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000882', N'华联股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11012) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000875', N'吉电股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11013) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000868', N'*ST安凯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11014) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000862', N'银星能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11015) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000920', N'南方汇通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11016) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000919', N'金陵药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11017) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000918', N'嘉凯城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11018) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000911', N'南宁糖业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11019) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000906', N'浙商中拓', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11020) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000899', N'赣能股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11021) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000897', N'*ST津滨', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11022) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000892', N'欢瑞世纪', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11023) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000898', N'鞍钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11024) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000893', N'亚钾国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11025) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000928', N'中钢国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11026) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000927', N'中国铁物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11027) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000925', N'众合科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11028) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000923', N'河钢资源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11029) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000926', N'福星股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11030) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000922', N'佳电股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11031) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000937', N'冀中能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11032) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000933', N'神火股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11033) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000932', N'华菱钢铁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11034) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000960', N'锡业股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11035) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000958', N'东方能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11036) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000953', N'河化股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11037) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000962', N'东方钽业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11038) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001201', N'东瑞股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11039) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001202', N'炬申股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11040) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000955', N'欣龙控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11041) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000939', N'*ST凯迪', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11042) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000969', N'安泰科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11043) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000966', N'长源电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11044) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000965', N'天保基建', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11045) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000985', N'大庆华科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11046) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000983', N'山西焦煤', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11047) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000982', N'*ST中绒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11048) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000980', N'众泰汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11049) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000981', N'ST银亿', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11050) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000973', N'佛塑科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11051) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000972', N'ST中基', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11052) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000971', N'*ST高升', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11053) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000968', N'蓝焰控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11054) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000995', N'皇台酒业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11055) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000997', N'新大陆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11056) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001203', N'大中矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11057) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001205', N'盛航股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11058) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001914', N'招商积余', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11059) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002026', N'山东威达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11060) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002021', N'*ST中捷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11061) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002015', N'协鑫能科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11062) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002011', N'盾安环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11063) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002006', N'精功科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11064) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002029', N'七匹狼', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11065) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002031', N'巨轮智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11066) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002048', N'宁波华翔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11067) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002047', N'宝鹰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11068) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002046', N'国机精工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11069) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002039', N'黔源电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11070) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000006', N'深振业A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11071) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000007', N'全新好', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11072) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000008', N'神州高铁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11073) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000009', N'中国宝安', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11074) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000011', N'深物业A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11075) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000017', N'深中华A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11076) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000023', N'深天地A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11077) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000025', N'特力A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11078) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000028', N'国药一致', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11079) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000029', N'深深房A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11080) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000036', N'华联控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11081) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000038', N'深大通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11082) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000045', N'深纺织A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11083) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000050', N'深天马A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11084) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000055', N'方大集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11085) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000058', N'深赛格', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11086) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000059', N'华锦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11087) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000061', N'农产品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11088) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000068', N'华控赛格', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11089) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000078', N'海王生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11090) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002209', N'达意隆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11091) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000150', N'宜华健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11092) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000151', N'中成股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11093) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000155', N'川能动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11094) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000301', N'东方盛虹', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11095) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000402', N'金融街', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11096) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000413', N'东旭光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11097) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000415', N'渤海租赁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11098) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000416', N'民生控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11099) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002210', N'*ST飞马', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11100) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000421', N'南京公用', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11101) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000430', N'张家界', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11102) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000498', N'山东路桥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11103) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000501', N'鄂武商A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11104) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000503', N'国新健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11105) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000505', N'京粮控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11106) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000506', N'中润资源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11107) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000507', N'珠海港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11108) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000510', N'新金路', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11109) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000514', N'渝开发', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11110) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000517', N'荣安地产', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11111) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000518', N'四环生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11112) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000523', N'广州浪奇', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11113) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000525', N'红太阳', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11114) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000526', N'学大教育', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11115) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000529', N'广弘控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11116) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000530', N'冰山冷热', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11117) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000531', N'穗恒运A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11118) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000532', N'华金资本', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11119) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000533', N'顺钠股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11120) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000536', N'华映科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11121) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000537', N'广宇发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11122) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000540', N'中天金融', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11123) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000543', N'皖能电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11124) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000544', N'中原环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11125) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000548', N'湖南投资', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11126) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000551', N'创元科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11127) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000557', N'西部创业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11128) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002220', N'ST天宝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11129) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000565', N'渝三峡A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11130) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000566', N'海南海药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11131) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000573', N'粤宏远A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11132) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000576', N'广东甘化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11133) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000586', N'汇源通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11134) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000589', N'贵州轮胎', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11135) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000590', N'启迪古汉', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11136) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000591', N'太阳能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11137) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000592', N'平潭发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11138) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000593', N'大通燃气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11139) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000598', N'兴蓉环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11140) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000599', N'青岛双星', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11141) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000607', N'华媒控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11142) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000608', N'阳光股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11143) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000610', N'西安旅游', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11144) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000612', N'焦作万方', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11145) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000613', N'大东海A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11146) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000615', N'奥园美谷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11147) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000616', N'海航投资', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11148) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000620', N'新华联', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11149) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000622', N'恒立实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11150) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000623', N'吉林敖东', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11151) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000626', N'远大控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11152) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000628', N'高新发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11153) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000629', N'攀钢钒钛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11154) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000631', N'顺发恒业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11155) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000637', N'茂化实华', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11156) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000639', N'西王食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11157) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000650', N'仁和药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11158) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000652', N'泰达股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11159) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000655', N'金岭矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11160) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000656', N'金科股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11161) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000657', N'中钨高新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11162) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000659', N'珠海中富', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11163) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000662', N'天夏智慧', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11164) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000663', N'永安林业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11165) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000665', N'湖北广电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11166) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000666', N'经纬纺机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11167) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000667', N'美好置业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11168) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000668', N'荣丰控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11169) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000669', N'金鸿控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11170) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000672', N'上峰水泥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11171) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000673', N'当代东方', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11172) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000677', N'恒天海龙', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11173) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000680', N'山推股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11174) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000682', N'东方电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11175) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000685', N'中山公用', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11176) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000686', N'东北证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11177) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000687', N'华讯方舟', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11178) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000690', N'宝新能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11179) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000691', N'亚太实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11180) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000695', N'滨海能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11181) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000697', N'炼石航空', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11182) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000700', N'模塑科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11183) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000701', N'厦门信达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11184) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000702', N'正虹科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11185) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000703', N'恒逸石化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11186) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000705', N'浙江震元', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11187) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002132', N'恒星科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11188) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000710', N'贝瑞基因', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11189) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000711', N'京蓝科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11190) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000713', N'丰乐种业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11191) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000716', N'黑芝麻', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11192) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000718', N'苏宁环球', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11193) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000719', N'中原传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11194) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000721', N'西安饮食', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11195) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000722', N'湖南发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11196) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000727', N'冠捷科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11197) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000735', N'罗牛山', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11198) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002324', N'普利特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11199) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002237', N'恒邦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11200) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000753', N'漳州发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11201) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000755', N'山西路桥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11202) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000756', N'新华制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11203) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002251', N'步步高', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11204) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000758', N'中色股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11205) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000759', N'中百集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11206) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002204', N'大连重工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11207) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002249', N'大洋电机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11208) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000762', N'西藏矿业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11209) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000766', N'通化金马', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11210) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000778', N'新兴铸管', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11211) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000779', N'甘咨询', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11212) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000783', N'长江证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11213) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000789', N'万年青', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11214) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000790', N'华神科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11215) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000791', N'甘肃电投', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11216) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002205', N'国统股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11217) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000793', N'华闻集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11218) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000795', N'英洛华', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11219) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000797', N'中国武夷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11220) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000798', N'中水渔业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11221) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000799', N'酒鬼酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11222) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000800', N'一汽解放', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11223) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000802', N'北京文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11224) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000807', N'云铝股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11225) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000810', N'创维数字', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11226) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000812', N'陕西金叶', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11227) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000813', N'德展健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11228) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000815', N'美利云', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11229) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000825', N'太钢不锈', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11230) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002988', N'豪美新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11231) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000828', N'东莞控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11232) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000829', N'天音控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11233) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000830', N'鲁西化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11234) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000831', N'五矿稀土', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11235) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002259', N'*ST升达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11236) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002255', N'海陆重工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11237) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002254', N'泰和新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11238) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000836', N'富通鑫茂', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11239) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002305', N'南国置业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11240) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002289', N'*ST宇顺', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11241) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002290', N'禾盛新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11242) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000839', N'中信国安', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11243) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000851', N'高鸿股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11244) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000856', N'冀东装备', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11245) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002990', N'盛视科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11246) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000859', N'国风塑业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11247) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002283', N'天润曲轴', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11248) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002274', N'华昌化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11249) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002276', N'万马股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11250) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000863', N'三湘印象', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11251) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002287', N'奇正藏药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11252) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002284', N'亚太股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11253) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000877', N'天山股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11254) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000878', N'云南铜业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11255) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000880', N'潍柴重机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11256) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000881', N'中广核技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11257) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002272', N'川润股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11258) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002269', N'美邦服饰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11259) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002263', N'大东南', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11260) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002260', N'*ST德奥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11261) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000886', N'海南高速', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11262) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002322', N'理工环科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11263) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000889', N'中嘉博创', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11264) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002986', N'宇新股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11265) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000890', N'法尔胜', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11266) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002323', N'*ST雅博', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11267) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000900', N'现代投资', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11268) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000901', N'航天科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11269) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000903', N'云内动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11270) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000905', N'厦门港务', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11271) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002325', N'洪涛股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11272) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000908', N'景峰医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11273) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000909', N'数源科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11274) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002989', N'中天精装', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11275) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000912', N'泸天化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11276) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000913', N'钱江摩托', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11277) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000915', N'华特达因', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11278) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000917', N'电广传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11279) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002306', N'中科云网', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11280) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002420', N'毅昌股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11281) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002398', N'垒知集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11282) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002393', N'力生制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11283) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002388', N'新亚制程', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11284) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002386', N'天原股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11285) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002377', N'国创高新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11286) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002375', N'亚厦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11287) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002374', N'中锐股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11288) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002357', N'富临运业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11289) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002359', N'*ST北讯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11290) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002356', N'*ST赫美', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11291) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002355', N'兴民智通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11292) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000929', N'兰州黄河', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11293) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000930', N'中粮科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11294) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000931', N'中关村', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11295) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002337', N'赛象科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11296) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002333', N'*ST罗普', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11297) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000935', N'四川双马', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11298) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002328', N'新朋股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11299) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002343', N'慈文传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11300) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002336', N'人人乐', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11301) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000948', N'南天信息', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11302) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000949', N'新乡化纤', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11303) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000950', N'重药控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11304) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000952', N'广济药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11305) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002321', N'华英农业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11306) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000959', N'首钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11307) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002455', N'百川股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11308) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002450', N'*ST康得', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11309) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002447', N'晨鑫科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11310) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002445', N'ST中南', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11311) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002442', N'龙星化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11312) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002435', N'长江健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11313) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002443', N'金洲管道', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11314) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002441', N'众业达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11315) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000975', N'银泰黄金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11316) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000976', N'华铁股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11317) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000990', N'诚志股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11318) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002427', N'*ST尤夫', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11319) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002428', N'云南锗业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11320) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002424', N'贵州百灵', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11321) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000996', N'中国中期', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11322) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001696', N'宗申动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11323) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001896', N'豫能控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11324) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002004', N'华邦健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11325) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002009', N'天奇股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11326) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002470', N'金正大', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11327) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002012', N'凯恩股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11328) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002016', N'世荣兆业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11329) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002017', N'东信和平', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11330) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002022', N'科华生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11331) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002023', N'海特高新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11332) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002499', N'*ST科林', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11333) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002028', N'思源电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11334) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002494', N'华斯股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11335) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002488', N'金固股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11336) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002487', N'大金重工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11337) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002485', N'希努尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11338) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002034', N'旺能环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11339) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002037', N'保利联合', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11340) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002473', N'圣莱达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11341) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002045', N'国光电器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11342) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002052', N'同洲电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11343) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002053', N'云南能投', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11344) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002054', N'德美化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11345) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002057', N'中钢天源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11346) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002058', N'*ST威尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11347) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002061', N'浙江交科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11348) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002509', N'天广中茂', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11349) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002064', N'华峰化学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11350) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002066', N'瑞泰科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11351) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002073', N'软控股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11352) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002501', N'*ST利源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11353) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002076', N'雪莱特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11354) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002077', N'大港股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11355) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002079', N'苏州固锝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11356) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002082', N'万邦德', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11357) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002083', N'孚日股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11358) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002084', N'海鸥住工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11359) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002542', N'中化岩土', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11360) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002539', N'云图控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11361) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002536', N'飞龙股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11362) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002535', N'林州重机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11363) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002093', N'国脉科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11364) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002521', N'齐峰新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11365) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002098', N'浔兴股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11366) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002529', N'海源复材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11367) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002522', N'浙江众成', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11368) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002160', N'常铝股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11369) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002103', N'广博股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11370) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002104', N'恒宝股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11371) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002107', N'沃华医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11372) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002108', N'沧州明珠', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11373) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002109', N'兴化股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11374) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002112', N'三变科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11375) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002200', N'ST云投', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11376) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002114', N'罗平锌电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11377) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002118', N'紫鑫药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11378) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002119', N'康强电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11379) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002123', N'梦网科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11380) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002124', N'天邦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11381) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002127', N'南极电商', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11382) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002130', N'沃尔核材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11383) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002133', N'广宇集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11384) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002134', N'天津普林', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11385) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002136', N'安纳达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11386) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002137', N'实益达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11387) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002145', N'中核钛白', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11388) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002146', N'荣盛发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11389) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002148', N'北纬科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11390) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002149', N'西部材料', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11391) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002150', N'通润装备', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11392) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002155', N'湖南黄金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11393) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002159', N'三特索道', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11394) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002161', N'远望谷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11395) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002162', N'悦心健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11396) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002166', N'莱茵生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11397) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002167', N'东方锆业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11398) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002168', N'惠程科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11399) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002170', N'芭田股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11400) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002172', N'澳洋健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11401) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002173', N'创新医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11402) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002174', N'游族网络', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11403) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002193', N'如意集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11404) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002198', N'嘉应制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11405) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002176', N'江特电机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11406) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002177', N'御银股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11407) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002991', N'甘源食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11408) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002178', N'延华智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11409) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002992', N'宝明科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11410) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002182', N'云海金属', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11411) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002183', N'怡亚通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11412) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002184', N'海得控制', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11413) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002186', N'全聚德', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11414) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002154', N'报喜鸟', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11415) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002190', N'成飞集成', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11416) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002192', N'融捷股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11417) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002995', N'天地在线', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11418) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002147', N'ST新光', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11419) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002196', N'方正电机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11420) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002197', N'证通电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11421) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002199', N'东晶电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11422) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002201', N'九鼎新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11423) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002208', N'合肥城建', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11424) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002211', N'宏达新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11425) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002212', N'天融信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11426) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002213', N'特尔佳', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11427) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002218', N'拓日新能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11428) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002219', N'恒康医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11429) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002221', N'东华能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11430) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002224', N'三力士', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11431) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002225', N'濮耐股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11432) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002226', N'江南化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11433) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002227', N'奥特迅', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11434) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002228', N'合兴包装', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11435) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002229', N'鸿博股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11436) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002231', N'奥维通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11437) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002232', N'启明信息', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11438) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002234', N'民和股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11439) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002235', N'安妮股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11440) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002239', N'奥特佳', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11441) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002240', N'盛新锂能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11442) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002993', N'奥海科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11443) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002243', N'力合科创', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11444) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002245', N'蔚蓝锂芯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11445) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002246', N'北化股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11446) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002247', N'聚力文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11447) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002248', N'华东数控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11448) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002250', N'联化科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11449) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002256', N'兆新股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11450) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002261', N'拓维信息', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11451) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002262', N'恩华药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11452) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002264', N'新华都', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11453) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002265', N'西仪股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11454) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002266', N'浙富控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11455) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002267', N'陕天然气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11456) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002270', N'华明装备', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11457) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002975', N'博杰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11458) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002278', N'神开股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11459) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002280', N'联络互动', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11460) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002282', N'博深股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11461) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002286', N'保龄宝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11462) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002288', N'超华科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11463) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002291', N'星期六', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11464) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002292', N'奥飞娱乐', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11465) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002295', N'精艺股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11466) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002296', N'辉煌科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11467) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002297', N'博云新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11468) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002298', N'中电兴发', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11469) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002303', N'美盈森', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11470) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002308', N'威创股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11471) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002309', N'中利集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11472) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002310', N'东方园林', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11473) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002312', N'川发龙蟒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11474) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002313', N'日海智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11475) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002314', N'南山控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11476) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002316', N'亚联发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11477) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002317', N'众生药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11478) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002318', N'久立特材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11479) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002319', N'乐通股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11480) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002320', N'海峡股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11481) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002326', N'永太科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11482) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002329', N'皇氏集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11483) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002330', N'得利斯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11484) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002332', N'仙琚制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11485) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002334', N'英威腾', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11486) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002335', N'科华数据', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11487) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002996', N'顺博合金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11488) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002338', N'奥普光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11489) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002339', N'积成电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11490) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002341', N'新纶科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11491) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002342', N'巨力索具', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11492) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002345', N'潮宏基', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11493) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002346', N'柘中股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11494) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002347', N'泰尔股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11495) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002348', N'高乐股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11496) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002349', N'精华制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11497) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002350', N'北京科锐', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11498) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002354', N'天神娱乐', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11499) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002358', N'森源电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11500) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002997', N'瑞鹄模具', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11501) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002360', N'同德化工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11502) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002999', N'天禾股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11503) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002361', N'神剑股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11504) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002362', N'汉王科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11505) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002363', N'隆基机械', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11506) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002364', N'中恒电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11507) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002366', N'台海核电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11508) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002369', N'卓翼科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11509) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002370', N'亚太药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11510) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002378', N'章源钨业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11511) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002379', N'宏创控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11512) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002380', N'科远智慧', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11513) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002381', N'双箭股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11514) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002385', N'大北农', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11515) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002387', N'维信诺', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11516) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002389', N'航天彩虹', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11517) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002390', N'信邦制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11518) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002391', N'长青股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11519) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002392', N'北京利尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11520) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002395', N'双象股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11521) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002397', N'梦洁股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11522) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002399', N'海普瑞', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11523) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002400', N'省广集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11524) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002401', N'中远海科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11525) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002402', N'和而泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11526) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002403', N'爱仕达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11527) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002406', N'远东传动', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11528) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002407', N'多氟多', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11529) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002408', N'齐翔腾达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11530) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002409', N'雅克科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11531) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002410', N'广联达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11532) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002984', N'森麒麟', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11533) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002411', N'延安必康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11534) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002412', N'汉森制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11535) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003000', N'华文食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11536) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002413', N'雷科防务', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11537) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002416', N'爱施德', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11538) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002417', N'深南股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11539) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002418', N'康盛股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11540) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002426', N'胜利精密', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11541) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002429', N'兆驰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11542) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002430', N'杭氧股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11543) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002431', N'棕榈股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11544) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002433', N'太安堂', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11545) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002437', N'誉衡药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11546) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002438', N'江苏神通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11547) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002165', N'红宝丽', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11548) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002446', N'盛路通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11549) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002448', N'中原内配', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11550) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002451', N'摩恩电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11551) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002452', N'长高集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11552) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002453', N'华软科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11553) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002454', N'松芝股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11554) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002457', N'青龙管业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11555) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002459', N'晶澳科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11556) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002464', N'众应互联', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11557) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002466', N'天齐锂业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11558) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002467', N'二六三', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11559) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002469', N'三维化学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11560) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002471', N'中超控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11561) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002472', N'双环传动', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11562) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002474', N'榕基软件', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11563) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002476', N'宝莫股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11564) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002478', N'常宝股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11565) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002480', N'新筑股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11566) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002481', N'双塔食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11567) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002483', N'润邦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11568) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002486', N'嘉麟杰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11569) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002489', N'浙江永强', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11570) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002490', N'山东墨龙', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11571) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002491', N'通鼎互联', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11572) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002492', N'恒基达鑫', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11573) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002493', N'荣盛石化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11574) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002495', N'佳隆股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11575) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002496', N'辉丰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11576) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002497', N'雅化集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11577) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002498', N'汉缆股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11578) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002502', N'鼎龙文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11579) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002503', N'搜于特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11580) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002504', N'弘高创意', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11581) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002505', N'鹏都农牧', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11582) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002506', N'协鑫集成', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11583) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002967', N'广电计量', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11584) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002512', N'达华智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11585) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002513', N'蓝丰生化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11586) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002514', N'宝馨科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11587) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002515', N'金字火腿', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11588) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002517', N'恺英网络', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11589) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002519', N'银河电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11590) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002520', N'日发精机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11591) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002523', N'天桥起重', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11592) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002524', N'光正眼科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11593) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002526', N'山东矿机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11594) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002527', N'新时达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11595) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002528', N'英飞拓', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11596) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002530', N'金财互联', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11597) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002532', N'天山铝业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11598) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002538', N'司尔特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11599) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002998', N'优彩资源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11600) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003009', N'中天火箭', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11601) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002540', N'亚太科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11602) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002541', N'鸿路钢构', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11603) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002544', N'杰赛科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11604) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002545', N'东方铁塔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11605) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002548', N'金新农', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11606) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002550', N'千红制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11607) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002551', N'尚荣医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11608) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002552', N'宝鼎科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11609) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002553', N'南方轴承', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11610) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002554', N'惠博普', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11611) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003007', N'直真科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11612) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002562', N'兄弟科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11613) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002564', N'天沃科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11614) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003008', N'开普检测', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11615) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003002', N'壶化股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11616) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002575', N'群兴玩具', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11617) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002576', N'通达动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11618) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002577', N'雷柏科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11619) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002581', N'未名医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11620) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002584', N'西陇科学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11621) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002585', N'双星新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11622) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002587', N'奥拓电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11623) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003005', N'竞业达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11624) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002591', N'恒大高新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11625) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002592', N'ST八菱', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11626) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002596', N'海南瑞泽', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11627) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003003', N'天元股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11628) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002164', N'宁波东力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11629) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002605', N'姚记科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11630) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002610', N'爱康科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11631) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002615', N'哈尔斯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11632) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002616', N'长青集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11633) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002617', N'露笑科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11634) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002618', N'丹邦科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11635) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002619', N'艾格拉斯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11636) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002622', N'融钰集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11637) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002623', N'亚玛顿', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11638) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003006', N'百亚股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11639) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002624', N'完美世界', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11640) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002625', N'光启技术', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11641) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002627', N'宜昌交运', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11642) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002630', N'华西能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11643) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002631', N'德尔未来', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11644) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002634', N'棒杰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11645) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002636', N'金安国纪', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11646) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002637', N'赞宇科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11647) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002638', N'勤上股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11648) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002639', N'雪人股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11649) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002641', N'永高股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11650) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002644', N'佛慈制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11651) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002650', N'加加食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11652) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002651', N'利君股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11653) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002652', N'扬子新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11654) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002653', N'海思科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11655) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002654', N'万润科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11656) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002656', N'摩登大道', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11657) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002658', N'雪迪龙', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11658) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002659', N'凯文教育', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11659) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002660', N'茂硕电源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11660) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002662', N'京威股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11661) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002663', N'普邦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11662) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002664', N'长鹰信质', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11663) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002665', N'首航高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11664) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002669', N'康达新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11665) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002670', N'国盛金控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11666) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002674', N'兴业科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11667) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002676', N'顺威股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11668) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002678', N'珠江钢琴', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11669) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002679', N'福建金森', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11670) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002163', N'海南发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11671) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002685', N'华东重机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11672) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002688', N'金河生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11673) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002689', N'远大智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11674) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002693', N'双成药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11675) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002695', N'煌上煌', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11676) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002698', N'博实股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11677) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002700', N'新疆浩源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11678) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002702', N'海欣食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11679) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002703', N'浙江世宝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11680) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002708', N'光洋股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11681) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002709', N'天赐材料', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11682) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002207', N'ST准油', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11683) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002712', N'思美传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11684) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002713', N'东易日盛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11685) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002715', N'登云股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11686) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002717', N'岭南股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11687) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002719', N'麦趣尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11688) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002721', N'金一文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11689) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002722', N'金轮股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11690) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002723', N'金莱特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11691) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002724', N'海洋王', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11692) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002725', N'跃岭股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11693) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002728', N'特一药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11694) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002729', N'好利来', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11695) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002730', N'电光科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11696) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002732', N'燕塘乳业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11697) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002734', N'利民股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11698) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002735', N'王子新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11699) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002736', N'国信证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11700) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002737', N'葵花药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11701) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002738', N'中矿资源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11702) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003010', N'若羽臣', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11703) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002742', N'三圣股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11704) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002748', N'世龙实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11705) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002750', N'龙津药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11706) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002751', N'易尚展示', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11707) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002753', N'永东股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11708) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002755', N'奥赛康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11709) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002756', N'永兴材料', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11710) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002758', N'浙农股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11711) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002759', N'天际股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11712) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002760', N'凤形股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11713) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002761', N'多喜爱', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11714) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002763', N'汇洁股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11715) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002765', N'蓝黛传动', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11716) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002767', N'先锋电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11717) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002769', N'普路通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11718) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002770', N'科迪乳业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11719) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002771', N'真视通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11720) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002772', N'众兴菌业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11721) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002778', N'高科石化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11722) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002780', N'三夫户外', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11723) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002781', N'奇信股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11724) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002782', N'可立克', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11725) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002783', N'凯龙股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11726) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002785', N'万里石', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11727) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002786', N'银宝山新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11728) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002787', N'华源控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11729) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002549', N'凯美特气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11730) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002556', N'辉隆股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11731) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002560', N'通达股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11732) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002566', N'益盛药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11733) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002569', N'ST步森', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11734) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002571', N'德力股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11735) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002574', N'明牌珠宝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11736) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002578', N'闽发铝业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11737) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002580', N'圣阳股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11738) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002586', N'ST围海', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11739) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002588', N'史丹利', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11740) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002590', N'万安科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11741) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002593', N'日上集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11742) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002597', N'金禾实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11743) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002598', N'山东章鼓', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11744) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002599', N'盛通股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11745) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002604', N'*ST龙力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11746) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002606', N'大连电瓷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11747) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002611', N'东方精工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11748) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002612', N'朗姿股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11749) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002613', N'北玻股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11750) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002620', N'瑞和股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11751) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002621', N'美吉姆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11752) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002629', N'*ST仁智', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11753) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002633', N'申科股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11754) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002642', N'荣联科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11755) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002667', N'鞍重股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11756) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002671', N'龙泉股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11757) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002682', N'龙洲股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11758) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002683', N'宏大爆破', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11759) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002684', N'*ST猛狮', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11760) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002686', N'亿利达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11761) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002687', N'乔治白', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11762) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002691', N'冀凯股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11763) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002692', N'ST远程', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11764) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002694', N'顾地科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11765) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002699', N'美盛文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11766) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002711', N'*ST欧浦', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11767) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002716', N'ST金贵', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11768) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002731', N'萃华珠宝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11769) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002740', N'爱迪尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11770) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002749', N'国光股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11771) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002752', N'昇兴股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11772) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002766', N'ST索菱', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11773) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002776', N'柏堡龙', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11774) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002779', N'中坚科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11775) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002951', N'金时科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11776) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002953', N'日丰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11777) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002963', N'豪尔赛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11778) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002965', N'祥鑫科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11779) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002968', N'新大正', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11780) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002969', N'嘉美包装', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11781) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002970', N'锐明技术', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11782) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002971', N'和远气体', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11783) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002972', N'科安达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11784) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002973', N'侨银股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11785) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002976', N'瑞玛工业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11786) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002977', N'天箭科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11787) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002978', N'安宁股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11788) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002979', N'雷赛智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11789) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002980', N'华盛昌', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11790) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002981', N'朝阳科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11791) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002982', N'湘佳股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11792) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002983', N'芯瑞达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11793) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002985', N'北摩高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11794) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002987', N'京北方', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11795) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002790', N'瑞尔特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11796) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002789', N'建艺集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11797) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002792', N'通宇通讯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11798) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002791', N'坚朗五金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11799) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002793', N'罗欣药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11800) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002795', N'永和智控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11801) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002796', N'世嘉科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11802) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002797', N'第一创业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11803) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002800', N'天顺股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11804) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002799', N'环球印务', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11805) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002801', N'微光股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11806) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002802', N'洪汇新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11807) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002805', N'丰元股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11808) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002803', N'吉宏股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11809) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002806', N'华锋股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11810) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002068', N'黑猫股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11811) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002062', N'宏润建设', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11812) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002067', N'景兴纸业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11813) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002808', N'恒久科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11814) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002809', N'红墙股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11815) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002810', N'山东赫达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11816) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002602', N'世纪华通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11817) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002807', N'江阴银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11818) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002811', N'郑中设计', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11819) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002075', N'沙钢股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11820) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002072', N'*ST凯瑞', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11821) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002813', N'路畅科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11822) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002816', N'和科达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11823) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002817', N'黄山胶囊', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11824) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002069', N'獐子岛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11825) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002071', N'长城影视', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11826) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002096', N'南岭民爆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11827) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002819', N'东方中科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11828) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002820', N'桂发祥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11829) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002823', N'凯中精密', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11830) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002825', N'纳尔股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11831) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002822', N'中装建设', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11832) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002089', N'*ST新海', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11833) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002828', N'贝肯能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11834) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002826', N'易明医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11835) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002827', N'高争民爆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11836) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002088', N'鲁阳节能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11837) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002087', N'新野纺织', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11838) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002829', N'星网宇达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11839) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002830', N'名雕股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11840) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002831', N'裕同科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11841) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002086', N'ST东海洋', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11842) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002078', N'太阳纸业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11843) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002835', N'同为股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11844) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002833', N'弘亚数控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11845) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002836', N'新宏泽', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11846) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002837', N'英维克', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11847) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002838', N'道恩股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11848) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002824', N'和胜股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11849) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002842', N'翔鹭钨业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11850) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002843', N'泰嘉股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11851) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002839', N'张家港行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11852) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002100', N'天康生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11853) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002845', N'同兴达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11854) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002846', N'英联股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11855) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002848', N'高斯贝尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11856) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002102', N'ST冠福', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11857) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002849', N'威星智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11858) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002868', N'绿康生化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11859) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002774', N'快意电梯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11860) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002840', N'华统股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11861) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002858', N'力盛赛车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11862) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002850', N'科达利', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11863) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002857', N'三晖电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11864) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002105', N'信隆健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11865) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002855', N'捷荣技术', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11866) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002856', N'美芝股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11867) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002113', N'ST天润', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11868) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002853', N'皮阿诺', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11869) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002863', N'今飞凯达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11870) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002865', N'钧达股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11871) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002866', N'传艺科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11872) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002861', N'瀛通通讯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11873) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002860', N'星帅尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11874) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002862', N'实丰文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11875) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002859', N'洁美科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11876) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001979', N'招商蛇口', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11877) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002122', N'*ST天马', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11878) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002131', N'利欧股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11879) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002871', N'伟隆股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11880) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002128', N'露天煤业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11881) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002870', N'香山股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11882) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002872', N'天圣制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11883) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002873', N'新天药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11884) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002876', N'三利谱', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11885) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002875', N'安奈儿', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11886) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002877', N'智能自控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11887) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002878', N'元隆雅图', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11888) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002880', N'卫光生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11889) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002883', N'中设股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11890) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002881', N'美格智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11891) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002125', N'湘潭电化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11892) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002886', N'沃特股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11893) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002885', N'京泉华', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11894) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002140', N'东华科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11895) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002879', N'长缆科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11896) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002882', N'金龙羽', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11897) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002889', N'东方嘉盛', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11898) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002887', N'绿茵生态', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11899) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002890', N'弘宇股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11900) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002892', N'科力尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11901) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002891', N'中宠股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11902) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002895', N'川恒股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11903) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002896', N'中大力德', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11904) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002144', N'宏达高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11905) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002141', N'贤丰控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11906) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002897', N'意华股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11907) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002898', N'赛隆药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11908) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002893', N'华通热力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11909) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002906', N'华阳集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11910) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002903', N'宇环数控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11911) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002905', N'金逸影视', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11912) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002907', N'华森制药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11913) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002909', N'集泰股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11914) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002910', N'庄园牧场', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11915) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002864', N'盘龙药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11916) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002912', N'中新赛克', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11917) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002911', N'佛燃能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11918) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002915', N'中欣氟材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11919) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002917', N'金奥博', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11920) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002919', N'名臣健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11921) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002920', N'德赛西威', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11922) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002921', N'联诚精密', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11923) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002922', N'伊戈尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11924) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002923', N'润都股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11925) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002927', N'泰永长征', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11926) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002929', N'润建通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11927) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002930', N'宏川智慧', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11928) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002931', N'锋龙股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11929) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002932', N'明德生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11930) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002935', N'天奥电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11931) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002936', N'郑州银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11932) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002937', N'兴瑞科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11933) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002940', N'昂利康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11934) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002939', N'长城证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11935) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002941', N'新疆交建', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11936) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002943', N'宇晶股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11937) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002942', N'新农股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11938) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002952', N'亚世光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11939) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002948', N'青岛银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11940) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002945', N'华林证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11941) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002949', N'华阳国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11942) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002958', N'青农商行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11943) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002955', N'鸿合科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11944) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002956', N'西麦食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11945) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002957', N'科瑞技术', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11946) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002960', N'青鸟消防', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11947) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002961', N'瑞达期货', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11948) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002962', N'五方光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11949) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001207', N'联科科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11950) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001208', N'华菱线缆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11951) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001209', N'洪兴股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11952) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000001', N'平安银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11953) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000002', N'万科A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11954) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000012', N'南玻A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11955) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000014', N'沙河股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11956) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000016', N'深康佳A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11957) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000019', N'深粮控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11958) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000020', N'深华发A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11959) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000021', N'深科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11960) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001872', N'招商港口', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11961) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000026', N'飞亚达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11962) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000027', N'深圳能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11963) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000031', N'大悦城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11964) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000032', N'深桑达A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11965) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000034', N'神州数码', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11966) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000035', N'中国天楹', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11967) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000037', N'深南电A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11968) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000039', N'中集集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11969) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000040', N'东旭蓝天', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11970) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000043', N'中航善达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11971) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000046', N'泛海控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11972) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000049', N'德赛电池', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11973) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000060', N'中金岭南', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11974) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000062', N'深圳华强', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11975) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000063', N'中兴通讯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11976) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000065', N'北方国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11977) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000066', N'中国长城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11978) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000069', N'华侨城A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11979) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000070', N'特发信息', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11980) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000088', N'盐田港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11981) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000089', N'深圳机场', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11982) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000090', N'天健集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11983) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000099', N'中信海直', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11984) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000100', N'TCL科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11985) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000156', N'华数传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11986) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000157', N'中联重科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11987) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000159', N'国际实业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11988) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000166', N'申万宏源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11989) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000333', N'美的集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11990) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000338', N'潍柴动力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11991) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000400', N'许继电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11992) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000401', N'冀东水泥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11993) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000423', N'东阿阿胶', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11994) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000425', N'徐工机械', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11995) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000429', N'粤高速A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11996) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000488', N'晨鸣纸业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11997) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000513', N'丽珠集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11998) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000516', N'国际医学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 11999) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000519', N'中兵红箭', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12000) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000521', N'长虹美菱', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12001) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000524', N'岭南控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12002) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000528', N'柳工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12003) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000538', N'云南白药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12004) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000539', N'粤电力A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12005) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000541', N'佛山照明', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12006) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000547', N'航天发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12007) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000550', N'江铃汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12008) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000553', N'安道麦A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12009) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000555', N'神州信息', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12010) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000558', N'莱茵体育', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12011) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000559', N'万向钱潮', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12012) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000560', N'我爱我家', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12013) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000561', N'烽火电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12014) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000563', N'陕国投A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12015) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000568', N'泸州老窖', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12016) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000581', N'威孚高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12017) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000582', N'北部湾港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12018) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000584', N'哈工智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12019) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000596', N'古井贡酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12020) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000603', N'盛达资源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12021) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000606', N'顺利办', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12022) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000617', N'中油资本', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12023) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000625', N'长安汽车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12024) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000627', N'天茂集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12025) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000636', N'风华高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12026) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000651', N'格力电器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12027) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000661', N'长春高新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12028) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000671', N'阳光城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12029) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000676', N'智度股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12030) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000681', N'视觉中国', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12031) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000708', N'中信特钢', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12032) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000723', N'美锦能源', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12033) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000725', N'京东方A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12034) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000726', N'鲁泰A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12035) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000728', N'国元证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12036) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000729', N'燕京啤酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12037) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000732', N'泰禾集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12038) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000733', N'振华科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12039) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000738', N'航发控制', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12040) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000750', N'国海证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12041) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000768', N'中航西飞', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12042) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000776', N'广发证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12043) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000777', N'中核科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12044) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000785', N'居然之家', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12045) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000788', N'北大医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12046) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000796', N'凯撒旅业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12047) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000811', N'冰轮环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12048) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002194', N'武汉凡谷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12049) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000823', N'超声电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12050) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000826', N'启迪环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12051) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000848', N'承德露露', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12052) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000858', N'五粮液', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12053) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000860', N'顺鑫农业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12054) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000869', N'张裕A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12055) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000876', N'新希望', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12056) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000888', N'峨眉山A', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12057) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000895', N'双汇发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12058) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000902', N'新洋丰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12059) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000910', N'大亚圣象', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12060) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000921', N'海信家电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12061) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000936', N'华西股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12062) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000938', N'紫光股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12063) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000951', N'中国重汽', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12064) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000957', N'中通客车', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12065) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000961', N'中南建设', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12066) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000963', N'华东医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12067) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000967', N'盈峰环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12068) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000970', N'中科三环', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12069) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000977', N'浪潮信息', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12070) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000978', N'桂林旅游', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12071) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000987', N'越秀金控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12072) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000988', N'华工科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12073) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000989', N'九芝堂', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12074) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000993', N'闽东电力', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12075) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000998', N'隆平高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12076) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz000999', N'华润三九', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12077) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002001', N'新和成', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12078) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002002', N'鸿达兴业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12079) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002003', N'伟星股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12080) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002007', N'华兰生物', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12081) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002008', N'大族激光', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12082) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002010', N'传化智联', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12083) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002013', N'中航机电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12084) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002014', N'永新股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12085) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002019', N'亿帆医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12086) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002020', N'京新药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12087) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002024', N'苏宁易购', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12088) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002025', N'航天电器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12089) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002027', N'分众传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12090) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002030', N'达安基因', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12091) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002032', N'苏泊尔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12092) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002033', N'丽江股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12093) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002035', N'华帝股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12094) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002036', N'联创电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12095) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002038', N'双鹭药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12096) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002040', N'南京港', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12097) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002041', N'登海种业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12098) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002042', N'华孚时尚', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12099) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002043', N'兔宝宝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12100) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002044', N'美年健康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12101) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002049', N'紫光国微', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12102) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002050', N'三花智控', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12103) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002051', N'中工国际', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12104) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002055', N'得润电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12105) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002056', N'横店东磁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12106) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002059', N'云南旅游', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12107) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002060', N'粤水电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12108) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002063', N'远光软件', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12109) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002065', N'东华软件', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12110) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002074', N'国轩高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12111) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002080', N'中材科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12112) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002081', N'金螳螂', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12113) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002085', N'万丰奥威', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12114) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002090', N'金智科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12115) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002091', N'江苏国泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12116) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002092', N'中泰化学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12117) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002094', N'青岛金王', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12118) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002095', N'生意宝', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12119) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002097', N'山河智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12120) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002099', N'海翔药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12121) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002101', N'广东鸿图', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12122) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002106', N'莱宝高科', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12123) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002110', N'三钢闽光', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12124) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002111', N'威海广泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12125) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002115', N'三维通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12126) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002116', N'中国海诚', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12127) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002117', N'东港股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12128) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002120', N'韵达股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12129) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002121', N'科陆电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12130) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002126', N'银轮股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12131) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002129', N'中环股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12132) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002135', N'东南网架', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12133) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002138', N'顺络电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12134) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002139', N'拓邦股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12135) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002142', N'宁波银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12136) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002151', N'北斗星通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12137) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002152', N'广电运通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12138) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002153', N'石基信息', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12139) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002156', N'通富微电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12140) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002157', N'正邦科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12141) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002158', N'汉钟精机', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12142) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002169', N'智光电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12143) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002179', N'中航光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12144) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002180', N'纳思达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12145) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002181', N'粤传媒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12146) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002185', N'华天科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12147) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002187', N'广百股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12148) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002189', N'中光学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12149) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002191', N'劲嘉股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12150) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002195', N'二三四五', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12151) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002202', N'金风科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12152) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002203', N'海亮股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12153) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002206', N'海利得', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12154) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002214', N'大立科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12155) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002215', N'诺普信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12156) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002216', N'三全食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12157) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002217', N'合力泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12158) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002222', N'福晶科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12159) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002223', N'鱼跃医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12160) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002230', N'科大讯飞', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12161) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002233', N'塔牌集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12162) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002236', N'大华股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12163) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002238', N'天威视讯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12164) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002241', N'歌尔股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12165) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002242', N'九阳股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12166) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002244', N'滨江集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12167) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002252', N'上海莱士', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12168) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002253', N'川大智胜', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12169) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002258', N'利尔化学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12170) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002268', N'卫士通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12171) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002271', N'东方雨虹', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12172) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002273', N'水晶光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12173) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002275', N'桂林三金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12174) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002277', N'友阿股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12175) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002279', N'久其软件', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12176) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002281', N'光迅科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12177) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002285', N'世联行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12178) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002293', N'罗莱生活', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12179) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002294', N'信立泰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12180) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002299', N'圣农发展', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12181) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002300', N'太阳电缆', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12182) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002301', N'齐心集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12183) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002302', N'西部建设', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12184) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002304', N'洋河股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12185) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002307', N'北新路桥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12186) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002311', N'海大集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12187) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002315', N'焦点科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12188) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002327', N'富安娜', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12189) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002331', N'皖通科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12190) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002340', N'格林美', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12191) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002344', N'海宁皮城', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12192) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002351', N'漫步者', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12193) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002352', N'顺丰控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12194) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002353', N'杰瑞股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12195) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002365', N'永安药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12196) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002367', N'康力电梯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12197) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002368', N'太极股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12198) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002371', N'北方华创', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12199) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002372', N'伟星新材', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12200) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002373', N'千方科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12201) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002376', N'新北洋', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12202) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002382', N'蓝帆医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12203) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002383', N'合众思壮', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12204) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002384', N'东山精密', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12205) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002394', N'联发股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12206) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002396', N'星网锐捷', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12207) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002404', N'嘉欣丝绸', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12208) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002405', N'四维图新', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12209) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002414', N'高德红外', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12210) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002415', N'海康威视', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12211) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002419', N'天虹股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12212) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002421', N'达实智能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12213) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002422', N'科伦药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12214) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002423', N'中粮资本', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12215) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002425', N'凯撒文化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12216) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002432', N'九安医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12217) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002434', N'万里扬', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12218) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002436', N'兴森科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12219) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002439', N'启明星辰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12220) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002440', N'闰土股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12221) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002444', N'巨星科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12222) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002449', N'国星光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12223) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002456', N'欧菲光', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12224) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002458', N'益生股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12225) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002460', N'赣锋锂业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12226) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002461', N'珠江啤酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12227) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002462', N'嘉事堂', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12228) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002463', N'沪电股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12229) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002465', N'海格通信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12230) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002468', N'申通快递', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12231) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002475', N'立讯精密', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12232) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002479', N'富春环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12233) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002482', N'广田集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12234) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002484', N'江海股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12235) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002500', N'山西证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12236) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002507', N'涪陵榨菜', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12237) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002508', N'老板电器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12238) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002510', N'天汽模', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12239) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002511', N'中顺洁柔', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12240) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002516', N'旷达科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12241) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002518', N'科士达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12242) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002531', N'天顺风能', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12243) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002533', N'金杯电工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12244) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002534', N'杭锅股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12245) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002537', N'海联金汇', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12246) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002543', N'万和电气', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12247) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002546', N'新联电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12248) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002547', N'春兴精工', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12249) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002555', N'三七互娱', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12250) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002557', N'洽洽食品', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12251) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002558', N'巨人网络', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12252) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002559', N'亚威股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12253) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002561', N'徐家汇', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12254) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002563', N'森马服饰', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12255) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002565', N'顺灏股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12256) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002567', N'唐人神', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12257) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002568', N'百润股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12258) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002570', N'贝因美', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12259) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002572', N'索菲亚', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12260) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002573', N'清新环境', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12261) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002579', N'中京电子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12262) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002582', N'好想你', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12263) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002583', N'海能达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12264) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002589', N'瑞康医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12265) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002594', N'比亚迪', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12266) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002595', N'豪迈科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12267) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002600', N'领益智造', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12268) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002601', N'龙蟒佰利', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12269) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002603', N'以岭药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12270) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002607', N'中公教育', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12271) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002608', N'江苏国信', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12272) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002609', N'捷顺科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12273) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002614', N'奥佳华', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12274) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002626', N'金达威', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12275) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002628', N'成都路桥', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12276) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002632', N'道明光学', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12277) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002635', N'安洁科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12278) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002640', N'跨境通', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12279) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002643', N'万润股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12280) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002645', N'华宏科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12281) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002646', N'青青稞酒', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12282) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002647', N'仁东控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12283) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002648', N'卫星石化', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12284) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002649', N'博彦科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12285) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002655', N'共达电声', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12286) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002657', N'中科金财', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12287) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002661', N'克明面业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12288) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002666', N'德联集团', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12289) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002668', N'奥马电器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12290) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002672', N'东江环保', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12291) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002673', N'西部证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12292) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002675', N'东诚药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12293) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002677', N'浙江美大', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12294) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002681', N'奋达科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12295) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002690', N'美亚光电', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12296) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002696', N'百洋股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12297) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002697', N'红旗连锁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12298) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002701', N'奥瑞金', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12299) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002705', N'新宝股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12300) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002706', N'良信股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12301) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002707', N'众信旅游', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12302) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002714', N'牧原股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12303) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002718', N'友邦吊顶', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12304) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002726', N'龙大肉食', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12305) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002727', N'一心堂', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12306) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002733', N'雄韬股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12307) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002739', N'万达电影', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12308) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002741', N'光华科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12309) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002743', N'富煌钢构', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12310) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002745', N'木林森', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12311) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002746', N'仙坛股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12312) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002747', N'埃斯顿', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12313) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002757', N'南兴股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12314) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002762', N'金发拉比', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12315) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002768', N'国恩股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12316) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002773', N'康弘药业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12317) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002775', N'文科园林', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12318) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002777', N'久远银海', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12319) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002788', N'鹭燕医药', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12320) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002798', N'帝欧家居', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12321) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002812', N'恩捷股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12322) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002815', N'崇达技术', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12323) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002821', N'凯莱英', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12324) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002832', N'比音勒芬', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12325) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002841', N'视源股份', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12326) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002847', N'盐津铺子', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12327) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002852', N'道道全', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12328) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002851', N'麦格米特', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12329) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002867', N'周大生', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12330) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002869', N'金溢科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12331) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002884', N'凌霄泵业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12332) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002888', N'惠威科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12333) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002899', N'英派斯', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12334) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002901', N'大博医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12335) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002900', N'哈三联', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12336) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002902', N'铭普光磁', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12337) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002908', N'德生科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12338) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002913', N'奥士康', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12339) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002916', N'深南电路', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12340) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002918', N'蒙娜丽莎', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12341) GO INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz001965', N'招商公路', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12342) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002925', N'盈趣科技', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12343) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002926', N'华西证券', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12344) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002818', N'富森美', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12345) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002928', N'华夏航空', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12346) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002933', N'新兴装备', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12347) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002938', N'鹏鼎控股', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12348) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002946', N'新乳业', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12349) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002947', N'恒铭达', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12350) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002950', N'奥美医疗', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12351) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002959', N'小熊电器', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12352) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz002966', N'苏州银行', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12353) INSERT [dbo].[stockData] ([code], [name], [startPrice], [olePrice], [nowPrice], [maxPrice], [minPrice], [bidderPrice], [auctionPrice], [turnover], [turnoverPrice], [buyOneNum], [buyOnePrice], [buyTwoNum], [buyTwoPrice], [buyThreeNum], [buyThreePrice], [buyFourNum], [buyFourPrice], [buyFiveNum], [buyFivePrice], [sellOneNum], [sellOnePrice], [sellTwoNum], [sellTwoPrice], [sellThreeNum], [sellThreePrice], [sellFourNum], [sellFourPrice], [sellFiveNum], [sellFivePrice], [timeStr], [id]) VALUES (N'sz003816', N'中国广核', CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(18, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), 0, CAST(0.00 AS Decimal(10, 2)), CAST(0x0000AD4C00A71E73 AS DateTime), 12354) SET IDENTITY_INSERT [dbo].[stockData] OFF SET IDENTITY_INSERT [dbo].[supplier] ON INSERT [dbo].[supplier] ([id], [suppliername], [manufacturertype], [contacts], [address], [vatrate], [taxpayeridentity], [bankaccount], [suppliercode], [payments], [totalamountsettled], [totaloutstandingamount], [remark], [creatorId], [createTime], [editorId], [editTime]) VALUES (2, N'供应商A', 36, 1, N'广东省东莞市', CAST(0.0700 AS Decimal(10, 4)), N'123456789', N'123456789', N'GYS001', CAST(0.00 AS Decimal(18, 2)), CAST(0.00 AS Decimal(18, 2)), CAST(0.00 AS Decimal(18, 2)), N'1', 1, CAST(0x0000AD58010584EA AS DateTime), 1, CAST(0x0000AD58010584EA AS DateTime)) INSERT [dbo].[supplier] ([id], [suppliername], [manufacturertype], [contacts], [address], [vatrate], [taxpayeridentity], [bankaccount], [suppliercode], [payments], [totalamountsettled], [totaloutstandingamount], [remark], [creatorId], [createTime], [editorId], [editTime]) VALUES (3, N'供应商B', 36, 1, N'广东省深圳市', CAST(0.0700 AS Decimal(10, 4)), N'123456789', N'123456789', N'GYS002', CAST(0.00 AS Decimal(18, 2)), CAST(0.00 AS Decimal(18, 2)), CAST(0.00 AS Decimal(18, 2)), N'0', 1, CAST(0x0000AD580105C98C AS DateTime), 1, CAST(0x0000AD580105C98C AS DateTime)) SET IDENTITY_INSERT [dbo].[supplier] OFF INSERT [dbo].[sysDataBase] ([name], [serverip], [databasename], [connecturl], [username], [passsword]) VALUES (N'localhost', N'.', N'winformdevfarme', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'sa', N'123456') INSERT [dbo].[sysDataBase] ([name], [serverip], [databasename], [connecturl], [username], [passsword]) VALUES (N'localhost1', N'.', N'test', N'Server=.;Database=test;User Id = sa; Password=123456;Connect Timeout = 2', N'sa', N'123456') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'Test', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT TOP 1000 [id] ,[ConnName] ,[ConnUrl] ,[DataSourceName] ,[UserName] ,[Password] ,[IsSavePwd] ,[ServerIP] FROM [MES].[dbo].[sys_DataSource]', N'Server=.;Database=mes;User Id = sa; Password=123456;Connect Timeout = 2', N'mes数据源') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'Test1', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT TOP 1000 [id] ,[ConnName] ,[ConnUrl] ,[DataSourceName] ,[UserName] ,[Password] ,[IsSavePwd] ,[ServerIP] FROM [MES].[dbo].[sys_DataSource]', N'Server=.;Database=test;User Id = sa; Password=123456;Connect Timeout = 2', N'TEST123') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'Test9', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT TOP 1000 [id] ,[ConnName] ,[ConnUrl] ,[DataSourceName] ,[UserName] ,[Password] ,[IsSavePwd] ,[ServerIP] FROM [MES].[dbo].[sys_DataSource]', N'Server=.;Database=mes;User Id = sa; Password=123456;Connect Timeout = 2;', N'mes数据源') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'部门', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT TOP 1000 [id] ID ,[pid] PID ,[name] Name FROM [winformdevfarme].[dbo].[sysDept]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'菜单tree', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT TOP 1000 [ID] ,[PID] ,[Name] FROM [winformdevfarme].[dbo].[sysMenu]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'仓库', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT TOP 1000 [id] ID ,[name] Name FROM [winformdevfarme].[dbo].[stock]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'产品', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT [id]ID ,[productname] Name FROM [winformdevfarme].[dbo].[product]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'产品类别', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT [id] ID ,[name] Name FROM [winformdevfarme].[dbo].[sysDictType] where pid=23', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'厂商类型', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT [id] ID ,[name] Name FROM [winformdevfarme].[dbo].[sysDictType] where pid=35', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'工单类型', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT [id] ID ,[name] Name FROM [winformdevfarme].[dbo].[sysDictType] where pid=49', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'功能按钮', N'SELECT [id] ID ,[btnName] Name FROM [winformdevfarme].[dbo].[sysToolButton]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'供应商', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT TOP 1000 [id] ID ,[suppliername] Name FROM [winformdevfarme].[dbo].[supplier]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'计量单位', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT [id] ID ,[name] Name FROM [winformdevfarme].[dbo].[sysDictType] where pid=17', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'角色功能', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT [id] ID ,[pid] PID ,[name] Name FROM [winformdevfarme].[dbo].[sysFunction]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'客户', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT TOP 1000 [id] ID ,[customername] Name FROM [winformdevfarme].[dbo].[customer]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'客户类别', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT [id] ID ,[name] Name FROM [winformdevfarme].[dbo].[sysDictType] where pid=26', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'物料', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT TOP 1000 [id] ID ,[name]Name ,[code]Code FROM [winformdevfarme].[dbo].[material]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'物料tree', N'SELECT TOP 1000 [id] ID ,[pid] PID ,[productBOMcode] Code ,[materialname] Name FROM [winformdevfarme].[dbo].[productBOMdetail]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'物料类别', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT [id] ID ,[name] Name FROM [winformdevfarme].[dbo].[sysDictType] where pid=33', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'用户', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT TOP 1000 [ID] ,[userName] Name FROM [winformdevfarme].[dbo].[sysuser]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'用户-角色', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT account, id, deptId ,[username] FROM [winformdevfarme].[dbo].[sysuser]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') INSERT [dbo].[sysDataTable] ([DataTableName], [DataTableSql], [DataTableUrl], [DataSourceName]) VALUES (N'字典类型', N'/****** Script for SelectTopNRows command from SSMS ******/ SELECT [ID] ,[PID] ,[Name] FROM [winformdevfarme].[dbo].[sysDictType]', N'Server=.;Database=winformdevfarme;User Id = sa; Password=123456;Connect Timeout = 2', N'localhost') SET IDENTITY_INSERT [dbo].[sysDept] ON INSERT [dbo].[sysDept] ([id], [pid], [name], [address], [phone], [creatorId], [createTime], [editorId], [editTime]) VALUES (1, 0, N'锦兴国际控股有限公司', N'荃湾海盛路3号TML广场23楼A室', N'+852 2406 0080', 1, CAST(0x0000AD2100F3AFAE AS DateTime), 1, CAST(0x0000AD2100F3AFAF AS DateTime)) INSERT [dbo].[sysDept] ([id], [pid], [name], [address], [phone], [creatorId], [createTime], [editorId], [editTime]) VALUES (2, 1, N'恩平锦兴纺织印染企业有限公司', N'广东省恩平市恩州工业大道北68号', N'0750-7176068', 1, CAST(0x0000AD2100F3DBDA AS DateTime), 1, CAST(0x0000AD2100F3DBDA AS DateTime)) INSERT [dbo].[sysDept] ([id], [pid], [name], [address], [phone], [creatorId], [createTime], [editorId], [editTime]) VALUES (3, 2, N'电脑部', N'广东省恩平市恩州工业大道北68号织厂', N'15029367414', 1, CAST(0x0000AD2100F41A8A AS DateTime), 1, CAST(0x0000AD2100F41A8B AS DateTime)) SET IDENTITY_INSERT [dbo].[sysDept] OFF SET IDENTITY_INSERT [dbo].[sysDictData] ON INSERT [dbo].[sysDictData] ([id], [dictTypeID], [code], [value], [remark], [sort], [creatorId], [createTime], [editorId], [editTime]) VALUES (3, 8, N'001', N'白色', N'测试 ', N'1', 1, CAST(0x0000AD0801492909 AS DateTime), 1, CAST(0x0000AD0801492909 AS DateTime)) INSERT [dbo].[sysDictData] ([id], [dictTypeID], [code], [value], [remark], [sort], [creatorId], [createTime], [editorId], [editTime]) VALUES (4, 8, N'002', N'黄色', N'0 ', N'2', 1, CAST(0x0000AD080150A3E4 AS DateTime), 1, CAST(0x0000AD0B00F6CF68 AS DateTime)) INSERT [dbo].[sysDictData] ([id], [dictTypeID], [code], [value], [remark], [sort], [creatorId], [createTime], [editorId], [editTime]) VALUES (5, 8, N'003', N'红色', N'0 ', N'3', 1, CAST(0x0000AD080150B675 AS DateTime), 1, CAST(0x0000AD080150B675 AS DateTime)) SET IDENTITY_INSERT [dbo].[sysDictData] OFF SET IDENTITY_INSERT [dbo].[sysDictType] ON INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (17, 0, N'计量单位', N'1', 1, CAST(0x0000AD3500A445AD AS DateTime), 1, CAST(0x0000AD3500A445AD AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (18, 17, N'个', N'1', 1, CAST(0x0000AD3500A469EF AS DateTime), 1, CAST(0x0000AD3500A469F0 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (19, 17, N'件', N'2', 1, CAST(0x0000AD3500A4758B AS DateTime), 1, CAST(0x0000AD3500A4758C AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (20, 17, N'台', N'3', 1, CAST(0x0000AD3500A48124 AS DateTime), 1, CAST(0x0000AD3500A48124 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (21, 17, N'套', N'4', 1, CAST(0x0000AD3500A49C39 AS DateTime), 1, CAST(0x0000AD3500A49C39 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (22, 17, N'支', N'5', 1, CAST(0x0000AD3500A4A99D AS DateTime), 1, CAST(0x0000AD3500A4A99D AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (23, 0, N'产品类别', N'3', 1, CAST(0x0000AD3500C2F0A8 AS DateTime), 1, CAST(0x0000AD3500C2F0A9 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (24, 23, N'成品', N'1', 1, CAST(0x0000AD3500C314AB AS DateTime), 1, CAST(0x0000AD3500C314AB AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (25, 23, N'半成品', N'2', 1, CAST(0x0000AD3500C32327 AS DateTime), 1, CAST(0x0000AD3500C32328 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (26, 0, N'客户类别', N'3', 1, CAST(0x0000AD350114EDF5 AS DateTime), 1, CAST(0x0000AD350114EDF6 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (27, 26, N'长期客户', N'1', 1, CAST(0x0000AD350114FD5C AS DateTime), 1, CAST(0x0000AD350114FD5C AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (28, 26, N'潜在客户', N'2', 1, CAST(0x0000AD3501150AFD AS DateTime), 1, CAST(0x0000AD3501150AFE AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (29, 26, N'普通客户', N'3', 1, CAST(0x0000AD35011517B4 AS DateTime), 1, CAST(0x0000AD35011517B4 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (30, 26, N'厂家', N'4', 1, CAST(0x0000AD3501152814 AS DateTime), 1, CAST(0x0000AD3501152814 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (31, 26, N'批发零售业', N'5', 1, CAST(0x0000AD3501153366 AS DateTime), 1, CAST(0x0000AD3501153367 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (32, 26, N'生产制造业', N'6', 1, CAST(0x0000AD3501154AE6 AS DateTime), 1, CAST(0x0000AD3501154AE6 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (33, 0, N'物料类别', N'4', 1, CAST(0x0000AD35011575DF AS DateTime), 1, CAST(0x0000AD35011575DF AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (34, 33, N'采购件', N'1', 1, CAST(0x0000AD350115830B AS DateTime), 1, CAST(0x0000AD350115830B AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (35, 0, N'厂商类型', N'1', 1, CAST(0x0000AD350115CE04 AS DateTime), 1, CAST(0x0000AD350115CE04 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (36, 35, N'原厂', N'1', 1, CAST(0x0000AD350115DF85 AS DateTime), 1, CAST(0x0000AD350115DF85 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (37, 35, N'批发商', N'2', 1, CAST(0x0000AD350115FD8A AS DateTime), 1, CAST(0x0000AD350115FD8A AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (38, 17, N'PCS', N'7', 1, CAST(0x0000AD3501166979 AS DateTime), 1, CAST(0x0000AD3501166979 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (39, 17, N'斤', N'1', 1, CAST(0x0000AD39012E95B5 AS DateTime), 1, CAST(0x0000AD39012E95B6 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (40, 17, N'箱', N'1', 1, CAST(0x0000AD3A00E2C5E2 AS DateTime), 1, CAST(0x0000AD3A00E2C5E3 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (41, 17, N'卷', N'1', 1, CAST(0x0000AD3A00E2EC4C AS DateTime), 1, CAST(0x0000AD3A00E2EC4C AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (42, 17, N'克', N'1', 1, CAST(0x0000AD3A00E2FD79 AS DateTime), 1, CAST(0x0000AD3A00E2FD79 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (43, 17, N'千克', N'1', 1, CAST(0x0000AD3A00E318B5 AS DateTime), 1, CAST(0x0000AD3A00E318B5 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (44, 17, N'吨', N'1', 1, CAST(0x0000AD3A00E327A2 AS DateTime), 1, CAST(0x0000AD3A00E327A2 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (45, 17, N'平米', N'1', 1, CAST(0x0000AD3A00E339CD AS DateTime), 1, CAST(0x0000AD3A00E339CD AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (46, 17, N'米', N'1', 1, CAST(0x0000AD3A00E34C6B AS DateTime), 1, CAST(0x0000AD3A00E34C6B AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (47, 17, N'千米', N'1', 1, CAST(0x0000AD3A00E35865 AS DateTime), 1, CAST(0x0000AD3A00E35865 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (48, 17, N'厘米', N'1', 1, CAST(0x0000AD3A00E36859 AS DateTime), 1, CAST(0x0000AD3A00E36859 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (49, 0, N'工单类型', N'5', 1, CAST(0x0000AD5600BB8AB3 AS DateTime), 1, CAST(0x0000AD5600BB8AB3 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (50, 49, N'计划工单', N'1', 1, CAST(0x0000AD5600BB99C8 AS DateTime), 1, CAST(0x0000AD5600BB99C9 AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (51, 49, N'正式工单', N'2', 1, CAST(0x0000AD5600BBB9DC AS DateTime), 1, CAST(0x0000AD5600BBB9DC AS DateTime), N'0') INSERT [dbo].[sysDictType] ([id], [pid], [name], [sort], [creatorId], [createTime], [editorId], [editTime], [remark]) VALUES (52, 49, N'外发工单', N'3', 1, CAST(0x0000AD5600BBCCA4 AS DateTime), 1, CAST(0x0000AD5600BBCCA4 AS DateTime), N'0') SET IDENTITY_INSERT [dbo].[sysDictType] OFF SET IDENTITY_INSERT [dbo].[sysFunction] ON INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (1, 0, N'MES系统', N'MES', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (2, 1, N'系统设置', N'systemsetup', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (3, 2, N'权限维护', N'permission', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (4, 3, N'菜单维护', N'FrmsysMenu', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (5, 3, N'用户维护', N'FrmsysUser', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (6, 3, N'角色维护', N'FrmsysRole', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (7, 3, N'部门维护', N'FrmsysDept', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (8, 3, N'角色功能维护', N'FrmsysFunction', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (9, 2, N'系统维护', N'systemmain', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (10, 9, N'参数维护', N'FrmsysDictType', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (11, 9, N'数据源维护', N'FrmsysDataBase', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (12, 9, N'数据集维护', N'FrmsysDataTable', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (13, 9, N'代码生成', N'frmSelectDataBas', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (18, 6, N'新增', N'FrmsysRole-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (19, 6, N'保存', N'FrmsysRole-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (20, 6, N'编辑', N'FrmsysRole-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (21, 6, N'取消', N'FrmsysRole-Canle', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (22, 10, N'新增', N'FrmsysDictType-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (23, 10, N'编辑', N'FrmsysDictType-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (24, 10, N'取消', N'FrmsysDictType-Canle', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (25, 10, N'保存', N'FrmsysDictType-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (26, 10, N'删除', N'FrmsysDictType-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (27, 10, N'搜索', N'FrmsysDictType-Search', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (28, 4, N'新增', N'FrmsysMenu-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (29, 4, N'编辑', N'FrmsysMenu-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (30, 4, N'取消', N'FrmsysMenu-Canle', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (31, 4, N'保存', N'FrmsysMenu-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (32, 4, N'删除', N'FrmsysMenu-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (33, 4, N'搜索', N'FrmsysMenu-Search', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (34, 5, N'新增', N'FrmsysUser-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (35, 5, N'编辑', N'FrmsysUser-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (36, 5, N'取消', N'FrmsysUser-Canle', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (37, 5, N'保存', N'FrmsysUser-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (38, 5, N'删除', N'FrmsysUser-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (39, 5, N'搜索', N'FrmsysUser-Search', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (40, 6, N'删除', N'FrmsysRole-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (41, 6, N'搜索', N'FrmsysRole-Search', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (42, 7, N'新增', N'FrmsysDept-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (43, 7, N'编辑', N'FrmsysDept-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (44, 7, N'取消', N'FrmsysDept-Canle', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (45, 7, N'保存', N'FrmsysDept-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (46, 7, N'删除', N'FrmsysDept-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (47, 7, N'搜索', N'FrmsysDept-Search', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (50, 9, N'双色球', N'FrmSSq', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (53, 3, N'功能按钮维护', N'FrmsysToolButton', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (66, 50, N'新增', N'FrmSSq-Add', 1) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (67, 50, N'编辑', N'FrmSSq-Edit', 2) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (68, 50, N'搜索', N'FrmSSq-Search', 3) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (69, 50, N'取消', N'FrmSSq-Canle', 4) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (70, 50, N'保存', N'FrmSSq-Save', 5) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (71, 50, N'删除', N'FrmSSq-Del', 6) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (78, 8, N'新增', N'FrmsysFunction-Add', 1) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (79, 8, N'编辑', N'FrmsysFunction-Edit', 2) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (80, 8, N'搜索', N'FrmsysFunction-Search', 3) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (81, 8, N'取消', N'FrmsysFunction-Canle', 4) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (82, 8, N'保存', N'FrmsysFunction-Save', 5) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (83, 8, N'删除', N'FrmsysFunction-Del', 6) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (84, 53, N'新增', N'FrmsysToolButton-Add', 1) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (85, 53, N'编辑', N'FrmsysToolButton-Edit', 2) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (86, 53, N'搜索', N'FrmsysToolButton-Search', 3) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (87, 53, N'取消', N'FrmsysToolButton-Canle', 4) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (88, 53, N'保存', N'FrmsysToolButton-Save', 5) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (89, 53, N'删除', N'FrmsysToolButton-Del', 6) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (90, 1, N'ERP', N'ERP', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (91, 90, N'基础资料', N'InitData', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (92, 91, N'产品信息', N'Frmproduct', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (93, 92, N'新增', N'Frmproduct-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (94, 92, N'编辑', N'Frmproduct-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (95, 92, N'搜索', N'Frmproduct-Search', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (96, 92, N'取消', N'Frmproduct-Canle', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (97, 92, N'保存', N'Frmproduct-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (98, 92, N'删除', N'Frmproduct-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (99, 91, N'仓库信息', N'Frmstock', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (100, 99, N'新增', N'Frmstock-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (101, 99, N'编辑', N'Frmstock-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (102, 99, N'搜索', N'Frmstock-Search', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (103, 99, N'取消', N'Frmstock-Canle', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (104, 99, N'保存', N'Frmstock-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (105, 99, N'删除', N'Frmstock-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (106, 91, N'物料信息', N'Frmmaterial', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (107, 106, N'新增', N'Frmmaterial-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (108, 106, N'编辑', N'Frmmaterial-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (109, 106, N'搜索', N'Frmmaterial-Search', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (110, 106, N'取消', N'Frmmaterial-Canle', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (111, 106, N'保存', N'Frmmaterial-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (112, 106, N'删除', N'Frmmaterial-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (113, 91, N'客户信息', N'Frmcustomer', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (114, 91, N'供应商信息', N'Frmsupplier', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (115, 114, N'新增', N'Frmsupplier-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (116, 114, N'保存', N'Frmsupplier-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (117, 113, N'新增', N'Frmcustomer-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (118, 113, N'保存', N'Frmcustomer-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (119, 90, N'销售管理', N'sale', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (120, 119, N'客户报价单', N'Frmquotation', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (121, 120, N'新增', N'Frmquotation-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (122, 120, N'保存', N'Frmquotation-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (123, 120, N'编辑', N'Frmquotation-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (124, 120, N'取消', N'Frmquotation-Canle', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (125, 120, N'搜索', N'Frmquotation-Search', 0) GO INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (126, 120, N'删除', N'Frmquotation-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (127, 119, N'销售管理', N'Frmsale', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (128, 127, N'新增', N'Frmsale-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (129, 127, N'保存', N'Frmsale-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (130, 119, N'销售出货单', N'Frmdeliversale', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (131, 130, N'新增', N'Frmdeliversale-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (132, 130, N'编辑', N'Frmdeliversale-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (133, 130, N'取消', N'Frmdeliversale-Canle', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (134, 130, N'保存', N'Frmdeliversale-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (135, 127, N'编辑', N'Frmsale-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (136, 119, N'销售退货单', N'Frmreturnsale', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (137, 136, N'新增', N'Frmreturnsale-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (138, 136, N'保存', N'Frmreturnsale-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (139, 90, N'工程管理', N'projectmanager', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (140, 139, N'产品BOM', N'FrmproductBOM', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (141, 140, N'新增', N'FrmproductBOM-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (142, 140, N'保存', N'FrmproductBOM-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (143, 90, N'采购管理', N'buyermanager', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (144, 143, N'请购单', N'Frmrequisition', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (145, 144, N'新增', N'Frmrequisition-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (146, 144, N'保存', N'Frmrequisition-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (147, 140, N'编辑', N'FrmproductBOM-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (148, 144, N'编辑', N'Frmrequisition-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (149, 143, N'采购单', N'Frmbuyer', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (150, 149, N'新增', N'Frmbuyer-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (151, 149, N'保存', N'Frmbuyer-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (152, 143, N'采购退货单', N'Frmbuyerreturn', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (153, 152, N'新增', N'Frmbuyerreturn-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (154, 152, N'保存', N'Frmbuyerreturn-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (155, 9, N'股票', N'FrmTest', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (156, 90, N'生产管理', N'workmanager', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (157, 156, N'生产工单', N'Frmworkorder', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (158, 157, N'新增', N'Frmworkorder-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (159, 157, N'保存', N'Frmworkorder-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (160, 157, N'编辑', N'Frmworkorder-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (161, 157, N'删除', N'Frmworkorder-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (162, 156, N'生产领料申请单', N'FrmproductionRequisition', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (163, 162, N'新增', N'FrmproductionRequisition-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (164, 162, N'保存', N'FrmproductionRequisition-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (165, 162, N'编辑', N'FrmproductionRequisition-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (166, 156, N'生产退料单', N'FrmproductionMaterialReturn', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (167, 166, N'新增', N'FrmproductionMaterialReturn-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (168, 166, N'保存', N'FrmproductionMaterialReturn-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (169, 90, N'仓库管理', N'warehousemanager', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (170, 169, N'采购入库单', N'FrmbuyerInWarehouse', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (171, 170, N'新增', N'FrmbuyerInWarehouse-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (172, 170, N'保存', N'FrmbuyerInWarehouse-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (173, 169, N'采购退货出库单', N'FrmbuyerOutWarehouse', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (174, 173, N'新增', N'FrmbuyerOutWarehouse-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (175, 173, N'保存', N'FrmbuyerOutWarehouse-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (176, 169, N'生产领料出库单', N'FrmproductMaterialOutWarehouse', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (177, 176, N'新增', N'FrmproductMaterialOutWarehouse-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (178, 176, N'保存', N'FrmproductMaterialOutWarehouse-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (179, 176, N'删除', N'FrmproductMaterialOutWarehouse-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (180, 169, N'生产退料入库单', N'FrmproductMaterialInWarehouse', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (181, 180, N'新增', N'FrmproductMaterialInWarehouse-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (182, 180, N'保存', N'FrmproductMaterialInWarehouse-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (183, 169, N'生产成品入库单', N'FrmfinishProductInInWarehouse', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (184, 183, N'新增', N'FrmfinishProductInInWarehouse-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (185, 183, N'保存', N'FrmfinishProductInInWarehouse-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (186, 156, N'完工成品入库单', N'FrmcompletionProductInWarehouse', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (187, 186, N'新增', N'FrmcompletionProductInWarehouse-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (188, 186, N'保存', N'FrmcompletionProductInWarehouse-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (189, 183, N'编辑', N'FrmfinishProductInInWarehouse-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (190, 169, N'销售出库单', N'FrmsaleOutWarehouse', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (191, 190, N'新增', N'FrmsaleOutWarehouse-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (192, 190, N'编辑', N'FrmsaleOutWarehouse-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (193, 190, N'保存', N'FrmsaleOutWarehouse-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (194, 190, N'删除', N'FrmsaleOutWarehouse-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (195, 183, N'删除', N'FrmfinishProductInInWarehouse-Del', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (196, 169, N'销售退货入库单', N'FrmsaleInWarehouse', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (197, 196, N'新增', N'FrmsaleInWarehouse-Add', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (198, 196, N'修改', N'FrmsaleInWarehouse-Edit', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (199, 196, N'保存', N'FrmsaleInWarehouse-Save', 0) INSERT [dbo].[sysFunction] ([id], [pid], [name], [functionCode], [toolBtnID]) VALUES (200, 196, N'删除', N'FrmsaleInWarehouse-Del', 0) SET IDENTITY_INSERT [dbo].[sysFunction] OFF SET IDENTITY_INSERT [dbo].[sysMenu] ON INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (1, 0, N'系统设置', N'Images\AddGroupFooter_32x32.png', N'0111', N'1', 1, N', ', 1, CAST(0x0000AD0600000000 AS DateTime), 1, CAST(0x0000AD0B01315D41 AS DateTime), 0, 0, N'systemsetup') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (9, 12, N'菜单维护', N'Images\TableLayout_32x32.png', N'MES.Form.FrmsysMenu,WinformGeneralDeveloperFrame.dll', N'1', 1, NULL, 1, CAST(0x0000AD0701677368 AS DateTime), 1, CAST(0x0000AD3400E54E9D AS DateTime), 1, 0, N'FrmsysMenu') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (10, 12, N'用户维护', N'Images\BOCustomer_32x32.png', N'MES.Form.FrmsysUser,WinformGeneralDeveloperFrame.dll', N'1', 1, NULL, 1, CAST(0x0000AD0801484BF0 AS DateTime), 1, CAST(0x0000AD3401279344 AS DateTime), 1, 0, N'FrmsysUser') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (12, 1, N'权限维护', N'Images\AddChartPane_32x32.png', N'11', N'1', 1, N', ', 1, CAST(0x0000AD0B01317600 AS DateTime), 1, CAST(0x0000AD0B01317600 AS DateTime), 0, 0, N'permission') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (13, 1, N'系统维护', N'Images\AddChartPane_32x32.png', N'0', N'1', 1, NULL, 1, CAST(0x0000AD0C00000000 AS DateTime), 1, CAST(0x0000AD5C009F5A44 AS DateTime), 0, 0, N'systemmain') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (14, 12, N'参数维护', N'Images\3DLine_32x32.png', N'MES.Form.FrmsysDictType,WinformGeneralDeveloperFrame.dll', N'1', 1, NULL, 1, CAST(0x0000AD0C00E8C4F9 AS DateTime), 1, CAST(0x0000AD3400DED8A2 AS DateTime), 1, 0, N'FrmsysDictType') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (15, 13, N'参数维护', N'Images\3DLine_32x32.png', N'MES.Form.FrmsysDictData,WinformGeneralDeveloperFrame.dll', N'2', 0, NULL, 1, CAST(0x0000AD0C00FEBC27 AS DateTime), 1, CAST(0x0000AD340100B8C6 AS DateTime), 1, 0, N'FrmsysDictData') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (16, 13, N'数据源维护', N'Images\Datasource_32x32.png', N'MES.Form.FrmsysDataBase,WinformGeneralDeveloperFrame.dll', N'3', 1, N'', 1, CAST(0x0000AD0D00FEC058 AS DateTime), 1, CAST(0x0000AD25009BBF02 AS DateTime), 1, 0, N'FrmsysDataBase') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (17, 13, N'数据集维护', N'Images\Database_32x32.png', N'MES.Form.FrmsysDataTable,WinformGeneralDeveloperFrame.dll', N'4', 1, N'', 1, CAST(0x0000AD0D0109D95D AS DateTime), 1, CAST(0x0000AD25009BCE97 AS DateTime), 1, 0, N'FrmsysDataTable') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (18, 13, N'代码生成', N'Images\3DClusteredColumn_32x32.png', N'WinformGeneralDeveloperFrame.frmSelectDataBase,WinformGeneralDeveloperFrame.dll', N'5', 1, N'', 1, CAST(0x0000AD0D010A415F AS DateTime), 1, CAST(0x0000AD25009BDB56 AS DateTime), 1, 0, N'frmSelectDataBas') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (19, 1, N'测试', N'Images\ADateOccurring_16x16.png', N'0', N'1', 1, NULL, 1, CAST(0x0000AD0D010F5A12 AS DateTime), 1, CAST(0x0000AD3400A4D14B AS DateTime), 0, 0, N'Test') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (22, 13, N'股票', N'Images\3DLine_32x32.png', N'WinformGeneralDeveloperFrame.FrmTest,WinformGeneralDeveloperFrame.dll', N'3', 1, NULL, 1, CAST(0x0000AD10010FDE4A AS DateTime), 1, CAST(0x0000AD4C0092BE27 AS DateTime), 1, 0, N'FrmTest') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (23, 19, N'测试', N'Images\AlignJustify_32x32.png', N'WinformGeneralDeveloperFrame.XtraForm1,WinformGeneralDeveloperFrame.dll', N'0', 1, NULL, 1, CAST(0x0000AD120110C969 AS DateTime), 1, CAST(0x0000AD3400E41E44 AS DateTime), 1, 0, N'frmTest') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (24, 12, N'角色维护', N'Images\3DClusteredColumn_32x32.png', N'MES.Form.FrmsysRole,WinformGeneralDeveloperFrame.dll', N'3', 1, N'11, 12, 13, 14, 15, 16', 1, CAST(0x0000AD2100F084CE AS DateTime), 1, CAST(0x0000AD25009C1057 AS DateTime), 1, 0, N'FrmsysRole') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (25, 12, N'部门维护', N'Images\3DLine_32x32.png', N'MES.Form.FrmsysDept,WinformGeneralDeveloperFrame.dll', N'4', 1, N'11, 12, 13, 14, 15, 16', 1, CAST(0x0000AD2100F29935 AS DateTime), 1, CAST(0x0000AD25009C1C8B AS DateTime), 1, 0, N'FrmsysDept') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (26, 12, N'角色功能维护', N'Images\BOUser_32x32.png', N'MES.Form.FrmsysFunction,WinformGeneralDeveloperFrame.dll', N'5', 1, NULL, 1, CAST(0x0000AD2100F2C965 AS DateTime), 1, CAST(0x0000AD340104B3E6 AS DateTime), 1, 0, N'FrmsysFunction') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (27, 13, N'双色球', N'Images\3DLine_32x32.png', N'WinformGeneralDeveloperFrame.FrmSSq,WinformGeneralDeveloperFrame.dll', N'4', 0, NULL, 1, CAST(0x0000AD2B00C539CE AS DateTime), 1, CAST(0x0000AD350084E8E4 AS DateTime), 1, 0, N'FrmSSq') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (28, 12, N'功能按钮维护', N'Images\IconSetSymbolsCircled3_32x32.png', N'MES.Form.FrmsysToolButton,WinformGeneralDeveloperFrame.dll', N'4', 1, NULL, 1, CAST(0x0000AD3400ED51C6 AS DateTime), 1, CAST(0x0000AD3400ED51C6 AS DateTime), 1, 0, N'FrmsysToolButton') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (29, 0, N'ERP', N'Images\3DClusteredColumn_32x32.png', N'0', N'2', 1, NULL, 1, CAST(0x0000AD3500A5DADB AS DateTime), 1, CAST(0x0000AD3500A5DADC AS DateTime), 0, 0, N'ERP') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (30, 29, N'基础资料', N'0', N'0', N'1', 1, NULL, 1, CAST(0x0000AD3500DBD720 AS DateTime), 1, CAST(0x0000AD3500DBD720 AS DateTime), 0, 0, N'InitData') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (31, 30, N'产品信息', N'Images\Product_32x32.png', N'ERP.Form.Frmproduct,WinformGeneralDeveloperFrame.dll', N'1', 1, NULL, 1, CAST(0x0000AD3500DC301A AS DateTime), 1, CAST(0x0000AD3500DC301B AS DateTime), 1, 0, N'Frmproduct') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (32, 30, N'仓库信息', N'Images\BOOrderItem_32x32.png', N'ERP.Form.Frmstock,WinformGeneralDeveloperFrame.dll', N'2', 1, NULL, 1, CAST(0x0000AD3500F1D852 AS DateTime), 1, CAST(0x0000AD3500F1D852 AS DateTime), 1, 0, N'Frmstock') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (33, 30, N'物料信息', N'Images\ChangeFontStyle_32x32.png', N'MES.Form.Frmmaterial,WinformGeneralDeveloperFrame.dll', N'3', 1, NULL, 1, CAST(0x0000AD35011DD430 AS DateTime), 1, CAST(0x0000AD35011DD431 AS DateTime), 1, 0, N'Frmmaterial') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (34, 30, N'客户信息', N'Images\Customer_32x32.png', N'MES.Form.Frmcustomer,WinformGeneralDeveloperFrame.dll', N'4', 1, NULL, 1, CAST(0x0000AD3501203BC4 AS DateTime), 1, CAST(0x0000AD3501203BC5 AS DateTime), 1, 0, N'Frmcustomer') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (35, 30, N'供应商信息', N'Images\Employee_32x32.png', N'MES.Form.Frmsupplier,WinformGeneralDeveloperFrame.dll', N'5', 1, NULL, 1, CAST(0x0000AD3501208B16 AS DateTime), 1, CAST(0x0000AD3501208B16 AS DateTime), 1, 0, N'Frmsupplier') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (36, 29, N'销售管理', N'Images\3DColumn_32x32.png', N'0', N'2', 1, NULL, 1, CAST(0x0000AD3600DFD51B AS DateTime), 1, CAST(0x0000AD3600DFD51C AS DateTime), 0, 0, N'sale') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (37, 36, N'客户报价单', N'Images\Paste_32x32.png', N'MES.Form.Frmquotation,WinformGeneralDeveloperFrame.dll', N'1', 1, NULL, 1, CAST(0x0000AD3600E02D2F AS DateTime), 1, CAST(0x0000AD3600E02D30 AS DateTime), 1, 0, N'Frmquotation') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (38, 36, N'销售订单', N'Images\FunctionsCube_32x32.png', N'MES.Form.Frmsale,WinformGeneralDeveloperFrame.dll', N'2', 1, NULL, 1, CAST(0x0000AD3900C01659 AS DateTime), 1, CAST(0x0000AD3A00E0A848 AS DateTime), 1, 0, N'Frmsale') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (39, 36, N'销售出货单', N'Images\3DFullStackedArea_32x32.png', N'MES.Form.Frmdeliversale,WinformGeneralDeveloperFrame.dll', N'3', 1, NULL, 1, CAST(0x0000AD3A00E020F4 AS DateTime), 1, CAST(0x0000AD3A00E020F5 AS DateTime), 1, 0, N'Frmdeliversale') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (40, 36, N'销售退货单', N'Images\3DStackedArea_32x32.png', N'MES.Form.Frmreturnsale,WinformGeneralDeveloperFrame.dll', N'5', 1, NULL, 1, CAST(0x0000AD3C00B19C8A AS DateTime), 1, CAST(0x0000AD3C00B19C8A AS DateTime), 1, 0, N'Frmreturnsale') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (41, 29, N'工程管理', N'Images\3DClusteredColumn_16x16.png', N'0', N'3', 1, NULL, 1, CAST(0x0000AD3C012F1401 AS DateTime), 1, CAST(0x0000AD3C012F1402 AS DateTime), 0, 0, N'projectmanager') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (42, 41, N'产品BOM', N'Images\Bubble3D_32x32.png', N'MES.Form.FrmproductBOM,WinformGeneralDeveloperFrame.dll', N'1', 1, NULL, 1, CAST(0x0000AD3C012F5683 AS DateTime), 1, CAST(0x0000AD3C012F5683 AS DateTime), 1, 0, N'FrmproductBOM') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (43, 29, N'采购管理', N'0', N'0', N'4', 1, NULL, 1, CAST(0x0000AD3E00B9DA4F AS DateTime), 1, CAST(0x0000AD3E00B9DA4F AS DateTime), 0, 0, N'buyermanager') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (44, 43, N'请购单', N'Images\BOReport_32x32.png', N'MES.Form.Frmrequisition,WinformGeneralDeveloperFrame.dll', N'1', 1, NULL, 1, CAST(0x0000AD3E00BA151E AS DateTime), 1, CAST(0x0000AD3E00BA151E AS DateTime), 1, 0, N'Frmrequisition') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (45, 43, N'采购单', N'Images\BlankRowsPivotTable_32x32.png', N'MES.Form.Frmbuyer,WinformGeneralDeveloperFrame.dll', N'2', 1, NULL, 1, CAST(0x0000AD3E011C65B7 AS DateTime), 1, CAST(0x0000AD40008D82A2 AS DateTime), 1, 0, N'Frmbuyer') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (46, 29, N'生产管理', N'0', N'0', N'0', 1, NULL, 1, CAST(0x0000AD480105A8A3 AS DateTime), 1, CAST(0x0000AD480105A8A4 AS DateTime), 0, 0, N'workmanager') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (47, 43, N'采购退货单', N'Images\3DCylinder_32x32.png', N' MES.Form.Frmbuyerreturn,WinformGeneralDeveloperFrame.dll', N'0', 1, NULL, 1, CAST(0x0000AD480105CE02 AS DateTime), 1, CAST(0x0000AD4801067B22 AS DateTime), 1, 0, N'Frmbuyerreturn') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (48, 46, N'生产工单', N'Images\3DFullStackedArea_32x32.png', N'MES.Form.Frmworkorder,WinformGeneralDeveloperFrame.dll', N'1', 1, NULL, 1, CAST(0x0000AD5600B9E1A0 AS DateTime), 1, CAST(0x0000AD5600B9E1A1 AS DateTime), 1, 0, N'Frmworkorder') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (49, 46, N'生产领料申请单', N'Images\BehindText_32x32.png', N'MES.Form.FrmproductionRequisition,WinformGeneralDeveloperFrame.dll', N'2', 1, NULL, 1, CAST(0x0000AD5900FA6058 AS DateTime), 1, CAST(0x0000AD5900FA6058 AS DateTime), 1, 0, N'FrmproductionRequisition') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (50, 46, N'生产退料单', N'Images\AlignFloatingObjectBottomLeft_32x32.png', N'MES.Form.FrmproductionMaterialReturn,WinformGeneralDeveloperFrame.dll', N'3', 1, NULL, 1, CAST(0x0000AD5A00CD3FD4 AS DateTime), 1, CAST(0x0000AD5A00CD3FD5 AS DateTime), 1, 0, N'FrmproductionMaterialReturn') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (51, 29, N'仓库管理', N'Images\BOSaleItem_32x32.png', N'warehousemanager', N'0', 1, NULL, 1, CAST(0x0000AD5A010744D5 AS DateTime), 1, CAST(0x0000AD5A010744D6 AS DateTime), 0, 0, N'warehousemanager') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (52, 51, N'采购入库单', N'Images\3DClusteredColumn_32x32.png', N'MES.Form.FrmbuyerInWarehouse,WinformGeneralDeveloperFrame.dll', N'1', 1, NULL, 1, CAST(0x0000AD5C0094E6C1 AS DateTime), 1, CAST(0x0000AD5C0094E6C2 AS DateTime), 1, 0, N'FrmbuyerInWarehouse') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (53, 51, N'采购退货出库单', N'Images\3DClusteredColumn_32x32.png', N'MES.Form.FrmbuyerOutWarehouse,WinformGeneralDeveloperFrame.dll', N'2', 1, NULL, 1, CAST(0x0000AD5C00E8EB6A AS DateTime), 1, CAST(0x0000AD5C00E8EB6A AS DateTime), 1, 0, N'FrmbuyerOutWarehouse') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (54, 51, N'生产领料出库单', N'Images\3DClusteredColumn_32x32.png', N'MES.Form.FrmproductMaterialOutWarehouse,WinformGeneralDeveloperFrame.dll', N'3', 1, NULL, 1, CAST(0x0000AD5C010A6078 AS DateTime), 1, CAST(0x0000AD5C010A6079 AS DateTime), 1, 0, N'FrmproductMaterialOutWarehouse') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (55, 51, N'生产退料入库单', N'Images\3DClusteredColumn_32x32.png', N'MES.Form.FrmproductMaterialInWarehouse,WinformGeneralDeveloperFrame.dll', N'4', 1, NULL, 1, CAST(0x0000AD5D00FB4E00 AS DateTime), 1, CAST(0x0000AD5D00FB4E01 AS DateTime), 1, 0, N'FrmproductMaterialInWarehouse') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (56, 46, N'完工成品入库单', N'Images\3DClusteredColumn_32x32.png', N'MES.Form.FrmcompletionProductInWarehouse,WinformGeneralDeveloperFrame.dll', N'4', 1, NULL, 1, CAST(0x0000AD5E00FD9CDF AS DateTime), 1, CAST(0x0000AD5E0105E699 AS DateTime), 1, 0, N'FrmcompletionProductInWarehouse') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (57, 51, N'生产成品入库单', N'Images\3DClusteredColumn_32x32.png', N'MES.Form.FrmfinishProductInInWarehouse,WinformGeneralDeveloperFrame.dll', N'5', 1, NULL, 1, CAST(0x0000AD5E00FDFC6F AS DateTime), 1, CAST(0x0000AD5E00FDFC70 AS DateTime), 1, 0, N'FrmfinishProductInInWarehouse') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (58, 51, N'销售出库单', N'Images\3DClusteredColumn_32x32.png', N'MES.Form.FrmsaleOutWarehouse,WinformGeneralDeveloperFrame.dll', N'6', 1, NULL, 1, CAST(0x0000AD6000F0DE93 AS DateTime), 1, CAST(0x0000AD6000F0DE94 AS DateTime), 1, 0, N'FrmsaleOutWarehouse') INSERT [dbo].[sysMenu] ([id], [pid], [name], [icon], [winformType], [sort], [isEnabled], [toolList], [creatorId], [createTime], [editorId], [editTime], [isForm], [isToolBtn], [functionCode]) VALUES (59, 51, N'销售退货入库单', N'Images\3DClusteredColumn_32x32.png', N'MES.Form.FrmsaleInWarehouse,WinformGeneralDeveloperFrame.dll', N'7', 1, NULL, 1, CAST(0x0000AD6A011183F6 AS DateTime), 1, CAST(0x0000AD6A011183F6 AS DateTime), 1, 0, N'FrmsaleInWarehouse') SET IDENTITY_INSERT [dbo].[sysMenu] OFF SET IDENTITY_INSERT [dbo].[sysRole] ON INSERT [dbo].[sysRole] ([id], [companyId], [companyName], [name], [creatorId], [createTime], [editorId], [editTime]) VALUES (1, 3, NULL, N'管理员', 1, CAST(0x0000AD220089886E AS DateTime), 1, CAST(0x0000AD6A012061C1 AS DateTime)) SET IDENTITY_INSERT [dbo].[sysRole] OFF INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 2) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 3) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 4) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 28) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 29) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 30) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 31) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 32) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 33) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 5) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 34) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 35) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 36) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 37) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 38) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 39) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 6) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 18) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 19) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 20) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 21) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 40) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 41) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 7) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 42) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 43) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 44) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 45) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 46) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 47) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 8) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 78) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 79) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 80) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 81) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 82) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 83) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 53) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 84) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 85) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 86) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 87) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 88) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 89) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 9) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 10) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 22) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 23) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 24) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 25) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 26) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 27) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 11) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 12) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 13) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 50) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 155) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 90) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 91) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 92) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 93) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 94) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 95) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 96) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 97) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 98) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 99) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 100) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 101) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 102) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 103) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 104) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 105) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 106) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 107) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 108) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 109) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 110) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 111) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 112) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 113) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 117) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 118) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 114) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 115) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 116) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 119) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 120) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 121) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 122) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 123) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 124) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 125) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 126) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 127) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 128) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 129) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 135) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 130) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 131) GO INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 132) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 133) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 134) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 136) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 137) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 138) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 139) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 140) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 141) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 142) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 147) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 143) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 144) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 145) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 146) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 148) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 149) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 150) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 151) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 152) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 153) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 154) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 156) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 157) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 158) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 159) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 160) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 161) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 162) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 163) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 164) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 165) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 166) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 167) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 168) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 186) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 187) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 188) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 169) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 170) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 171) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 172) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 173) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 174) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 175) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 176) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 177) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 178) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 179) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 180) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 181) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 182) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 183) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 184) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 185) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 189) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 195) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 190) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 191) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 192) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 193) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 194) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 196) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 197) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 198) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 199) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (1, 200) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (3, 2) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (3, 3) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (3, 4) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (3, 5) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (3, 6) INSERT [dbo].[sysRoleFunction] ([roleId], [functionId]) VALUES (3, 18) SET IDENTITY_INSERT [dbo].[sysToolButton] ON INSERT [dbo].[sysToolButton] ([id], [btnName], [btnCode], [btnIcon], [remark]) VALUES (1, N'新增', N'Add', N'Images\Add_16x16.png', N'1') INSERT [dbo].[sysToolButton] ([id], [btnName], [btnCode], [btnIcon], [remark]) VALUES (2, N'编辑', N'Edit', N'Images\Edit_16x16.png', N'1') INSERT [dbo].[sysToolButton] ([id], [btnName], [btnCode], [btnIcon], [remark]) VALUES (3, N'搜索', N'Search', N'Images\Find_16x16.png', N'Search') INSERT [dbo].[sysToolButton] ([id], [btnName], [btnCode], [btnIcon], [remark]) VALUES (4, N'取消', N'Canle', N'Images\Undo_16x16.png', N'Canle') INSERT [dbo].[sysToolButton] ([id], [btnName], [btnCode], [btnIcon], [remark]) VALUES (5, N'保存', N'Save', N'Images\Save_16x16.png', N'Save') INSERT [dbo].[sysToolButton] ([id], [btnName], [btnCode], [btnIcon], [remark]) VALUES (6, N'删除', N'Del', N'Images\Delete_16x16.png', N'Del') SET IDENTITY_INSERT [dbo].[sysToolButton] OFF SET IDENTITY_INSERT [dbo].[sysUser] ON INSERT [dbo].[sysUser] ([id], [account], [username], [password], [email], [mobilephone], [deptId], [isEnabled], [creatorId], [createTime], [editorId], [editTime]) VALUES (1, N'0010498', N'王凯', N'e10adc3949ba59abbe56e057f20f883e', N'648428741@Qq.com', N'15029367414', 3, 1, 0, CAST(0x0000ACFD00000000 AS DateTime), 1, CAST(0x0000AD6D00BE944F AS DateTime)) INSERT [dbo].[sysUser] ([id], [account], [username], [password], [email], [mobilephone], [deptId], [isEnabled], [creatorId], [createTime], [editorId], [editTime]) VALUES (1005, N'0010499', N'test', N'e10adc3949ba59abbe56e057f20f883e', N'11', N'111', 3, 1, 1, CAST(0x0000AD6D00BDFBD4 AS DateTime), 1, CAST(0x0000AD6D00BEA507 AS DateTime)) SET IDENTITY_INSERT [dbo].[sysUser] OFF INSERT [dbo].[sysUserRole] ([userId], [roleId]) VALUES (1, 1) INSERT [dbo].[sysUserRole] ([userId], [roleId]) VALUES (3, 3) SET IDENTITY_INSERT [dbo].[workorder] ON INSERT [dbo].[workorder] ([id], [wordordercode], [salecode], [saledetailcode], [workordertype], [productdate], [productdept], [productcode], [productid], [spec], [productnumber], [unit], [finishdate], [deliverdate], [warehouse], [creatorId], [createTime], [remark], [bomid]) VALUES (1, N'GD20210702083552824', N'SO202171155528704', N'SOD2021711555287171', 51, CAST(0x0000AD6D00000000 AS DateTime), 3, N'CPDN0001', 3, N'联想', CAST(500.00000 AS Decimal(18, 5)), 20, CAST(0x0000AD6700000000 AS DateTime), CAST(0x0000AD7500000000 AS DateTime), 1, 1, CAST(0x0000AD5801271645 AS DateTime), N'0', 4) INSERT [dbo].[workorder] ([id], [wordordercode], [salecode], [saledetailcode], [workordertype], [productdate], [productdept], [productcode], [productid], [spec], [productnumber], [unit], [finishdate], [deliverdate], [warehouse], [creatorId], [createTime], [remark], [bomid]) VALUES (2, N'GD20210702171149017', N'0', N'0', 51, CAST(0x0000AD6800000000 AS DateTime), 3, N'CPDN0001', 3, N'测试', CAST(60000.00000 AS Decimal(18, 5)), 20, CAST(0x0000ADD200000000 AS DateTime), CAST(0x0000ADD900000000 AS DateTime), 1, 1, CAST(0x0000AD59011B00D8 AS DateTime), N'A客户', 4) SET IDENTITY_INSERT [dbo].[workorder] OFF ALTER TABLE [dbo].[sysMenu] ADD CONSTRAINT [DF_sysMenu_isEnabled] DEFAULT ((0)) FOR [isEnabled] GO ALTER TABLE [dbo].[sysMenu] ADD CONSTRAINT [DF_sysMenu_isForm] DEFAULT ((0)) FOR [isForm] GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyer', @level2type=N'COLUMN',@level2name=N'buyercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyer', @level2type=N'COLUMN',@level2name=N'buyerdate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'供应商' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyer', @level2type=N'COLUMN',@level2name=N'supplierid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'供应商编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyer', @level2type=N'COLUMN',@level2name=N'suppliercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'完货日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyer', @level2type=N'COLUMN',@level2name=N'deliverdate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyer', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'金额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyer', @level2type=N'COLUMN',@level2name=N'totalprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyer', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'buyerid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'buyercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'请购单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'requisitioncode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'materialid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'materialcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'materialspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'materialunit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'单价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'unitprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'金额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'money' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'交货总量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'delivernumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货总量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'returnnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'实际交货总量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'realdelivernumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'未交货数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'nodelivernumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'已结算数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'finishnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'未结算数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'nofinishnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'明细号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerdetail', @level2type=N'COLUMN',@level2name=N'buyerdetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouse', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouse', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'供应商' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouse', @level2type=N'COLUMN',@level2name=N'supplierid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'供应商编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouse', @level2type=N'COLUMN',@level2name=N'suppliercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouse', @level2type=N'COLUMN',@level2name=N'intime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouse', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主表id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'masterid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购入库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'mastercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购入库明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'detailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'buyerdetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'buyercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购退货出库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouse', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出库日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouse', @level2type=N'COLUMN',@level2name=N'outtime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'供应商' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouse', @level2type=N'COLUMN',@level2name=N'supplierid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'供应商编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouse', @level2type=N'COLUMN',@level2name=N'suppliercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouse', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouse', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主表id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'masterid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购出库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'mastercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购出库明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'detailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购退货单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'buyerreturncode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购退货明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'buyerreturndetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'buyercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'buyerdetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出库数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturn', @level2type=N'COLUMN',@level2name=N'returndate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'供应商编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturn', @level2type=N'COLUMN',@level2name=N'suppliercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'供应商名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturn', @level2type=N'COLUMN',@level2name=N'supplierid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturn', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购退货单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturn', @level2type=N'COLUMN',@level2name=N'returnbuyercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'金额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturn', @level2type=N'COLUMN',@level2name=N'totalprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturn', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'buyerdetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'buyercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'materialcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'materialid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'materialspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'returnnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购单价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'unitprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'金额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'money' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'returnbuyercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'buyerreturndetail', @level2type=N'COLUMN',@level2name=N'returnbuyerdetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouse', @level2type=N'COLUMN',@level2name=N'intime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouse', @level2type=N'COLUMN',@level2name=N'dept' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouse', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouse', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouse', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主表id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'masterid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'完工成品入库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'mastercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'完工成品入库明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'detailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'工单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'wocode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'salecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'saledetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'productid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'spec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'completionProductInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'customer', @level2type=N'COLUMN',@level2name=N'customername' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户类别' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'customer', @level2type=N'COLUMN',@level2name=N'customertype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'联系人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'customer', @level2type=N'COLUMN',@level2name=N'contactuser' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'电话' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'customer', @level2type=N'COLUMN',@level2name=N'phonenumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户地址' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'customer', @level2type=N'COLUMN',@level2name=N'address' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'期初应收款' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'customer', @level2type=N'COLUMN',@level2name=N'startreceipt' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'customer', @level2type=N'COLUMN',@level2name=N'customercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'应收款总额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'customer', @level2type=N'COLUMN',@level2name=N'totalreceivables' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'已结款总额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'customer', @level2type=N'COLUMN',@level2name=N'totalamountsettled' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'未结款总额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'customer', @level2type=N'COLUMN',@level2name=N'totaloutstandingamount' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'customer', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversale', @level2type=N'COLUMN',@level2name=N'customerid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversale', @level2type=N'COLUMN',@level2name=N'customercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出货日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversale', @level2type=N'COLUMN',@level2name=N'deliverdate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversale', @level2type=N'COLUMN',@level2name=N'customertype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'联系人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversale', @level2type=N'COLUMN',@level2name=N'contactuser' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'送货地址' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversale', @level2type=N'COLUMN',@level2name=N'deliveraddress' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversale', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出货单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversale', @level2type=N'COLUMN',@level2name=N'deliversalecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversale', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出货单' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversaledetail', @level2type=N'COLUMN',@level2name=N'deliversaleid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversaledetail', @level2type=N'COLUMN',@level2name=N'salecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversaledetail', @level2type=N'COLUMN',@level2name=N'productname' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversaledetail', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversaledetail', @level2type=N'COLUMN',@level2name=N'productspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversaledetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出货数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversaledetail', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversaledetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversaledetail', @level2type=N'COLUMN',@level2name=N'deliversalecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversaledetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'明细号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'deliversaledetail', @level2type=N'COLUMN',@level2name=N'deliversaledetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouse', @level2type=N'COLUMN',@level2name=N'intime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouse', @level2type=N'COLUMN',@level2name=N'dept' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouse', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouse', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouse', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主表id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'masterid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产成品入库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'mastercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'完工成品入库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'completionProductInWarehouseCode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'完工成品入库明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'completionProductInWarehouseDetailCode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产成品入库明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'detailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'工单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'wocode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'salecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'saledetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'productid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'productspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'finishProductInInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'代码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'gupiaorecord', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'gupiaorecord', @level2type=N'COLUMN',@level2name=N'name' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'成交量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'gupiaorecord', @level2type=N'COLUMN',@level2name=N'turnover' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'涨幅' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'gupiaorecord', @level2type=N'COLUMN',@level2name=N'amount' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'gupiaorecord', @level2type=N'COLUMN',@level2name=N'gettime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'name' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'spec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'参考单价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'referprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料类别' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'materialtype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'采购入库总量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'POinnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货出库总量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'salereturnnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产领料总量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'YDProductConsume' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产退料总量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'productmaterialreturn' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'库存数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'stocknumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'库存预警数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'stockwarnnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'material', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'productname' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'spec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'默认单价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'defaultprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品类别' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'producttype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'库存' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'stocknumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'期初数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'startnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'期初总价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'startprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产入库数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'productinnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售出库数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'saleoutnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户退货数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'customerreturnnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'库存预警数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'stockwarnnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'editorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'editTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'product', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'customerid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'customercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'productid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'spec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'版本号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'version' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'BOM编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'productBOMcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'单位成本' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'unitcost' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'editorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOM', @level2type=N'COLUMN',@level2name=N'editTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'父项' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'pid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'BOM主表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'productBOMid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'BOM编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'productBOMcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'materialid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'materialname' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'materialcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'materialspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'materialtype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'单位用量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'unitusenumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'单价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'unitprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'金额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'money' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'明细号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productBOMdetail', @level2type=N'COLUMN',@level2name=N'productBOMdetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'工程BOM编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'projectBOMcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产BOM编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'productionBOMcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品生产数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'materialcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'materialid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'spec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'materialtype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'单位用量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'uintnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'需求总量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'neednumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'单价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'unitprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'总价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'totalprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionBOM', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退料单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturn', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退料日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturn', @level2type=N'COLUMN',@level2name=N'returntime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退料单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturn', @level2type=N'COLUMN',@level2name=N'returndept' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturn', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturn', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主表id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'masterid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退料单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'mastercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退料明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'detailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'领料单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'pickcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'工单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'wocode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'materialid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'materialcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'materialspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退料原因' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'reason' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退料数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'领料明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionMaterialReturnDetail', @level2type=N'COLUMN',@level2name=N'pickdetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'领料单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'工单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'wocode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'salecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'领料日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'pickingtime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'productID' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'productspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'领料部门' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'pickingdept' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisition', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主表ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'masterid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'领料单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'mastercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'领料明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'detailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'materialid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'materialcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'materialspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'materialtype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'单位用量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'unitnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品生产数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'productnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'领料数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'picknumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'工单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productionRequisitionDetail', @level2type=N'COLUMN',@level2name=N'wocode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouse', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouse', @level2type=N'COLUMN',@level2name=N'intime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退料单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouse', @level2type=N'COLUMN',@level2name=N'dept' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouse', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouse', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主表id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'masterid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产退料入库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'masercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产退料入库明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'detailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产退料单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'productionMaterialReturnCode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产退料明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'productionMaterialReturnDetailCode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退料原因' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'reason' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'工单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'wocode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产领料出库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouse', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'领料单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouse', @level2type=N'COLUMN',@level2name=N'dept' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出库日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouse', @level2type=N'COLUMN',@level2name=N'outtime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouse', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouse', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主表id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'masterid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产领料出库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'mastercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产领料出库明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'detailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产领料单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'pickcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产领料明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'pickdetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'工单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'wocode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'materialtype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出库数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'productMaterialOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotation', @level2type=N'COLUMN',@level2name=N'customerid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'报价日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotation', @level2type=N'COLUMN',@level2name=N'quotationdate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotation', @level2type=N'COLUMN',@level2name=N'customercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotation', @level2type=N'COLUMN',@level2name=N'customertype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'联系人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotation', @level2type=N'COLUMN',@level2name=N'customeruser' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotation', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'送货地址' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotation', @level2type=N'COLUMN',@level2name=N'deliveraddress' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'报价单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotation', @level2type=N'COLUMN',@level2name=N'quotationcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'总价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotation', @level2type=N'COLUMN',@level2name=N'totalprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'productname' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'productid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'spec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'报价数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'单价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'unitprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'金额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'money' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'stockid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'报价单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'quotationcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'报价单' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'quotationid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'明细号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'quotationdetail', @level2type=N'COLUMN',@level2name=N'quotationdetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'请购单编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisition', @level2type=N'COLUMN',@level2name=N'requisitioncode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'请购部门' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisition', @level2type=N'COLUMN',@level2name=N'deptid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'请购日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisition', @level2type=N'COLUMN',@level2name=N'requisitiondate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'交货日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisition', @level2type=N'COLUMN',@level2name=N'deliverdate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisition', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'金额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisition', @level2type=N'COLUMN',@level2name=N'totalprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'请购单主表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'requisitionid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'请购单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'requisitioncode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'materialid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'materialcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'materialspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'materialunit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'请购数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'requisitionnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'单价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'unitprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'金额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'money' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'明细号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'requisitiondetail', @level2type=N'COLUMN',@level2name=N'requisitiondetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsale', @level2type=N'COLUMN',@level2name=N'returndate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsale', @level2type=N'COLUMN',@level2name=N'customercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsale', @level2type=N'COLUMN',@level2name=N'customerid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsale', @level2type=N'COLUMN',@level2name=N'customertype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'联系人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsale', @level2type=N'COLUMN',@level2name=N'contactuser' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'联系电话' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsale', @level2type=N'COLUMN',@level2name=N'contactphone' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsale', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsale', @level2type=N'COLUMN',@level2name=N'returnsalecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsale', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货单主表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'returnsaleid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'returnsalecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出货单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'deliversalecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'salecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'productname' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'productspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'returnnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'明细号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'returnsaledetail', @level2type=N'COLUMN',@level2name=N'returnsaledetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'saleordercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'订单日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'orderdate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'customerid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'customercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'customertype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'customerordercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'联系人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'contactuser' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'联系电话' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'contactphone' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'送货地址' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'deliveraddress' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'业务员' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'salesman' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'完货日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'finishdate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sale', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'productid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'productspec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'salenumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'单价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'unitprice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'金额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'money' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'交货日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'deliverdate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'已排产量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'readynumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'待排产量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'noreadynumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'已完工量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'finishnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'已出货量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'outnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'退货量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'returnnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'未交货数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'nodelivernumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'实际交货数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'delivernumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'已结算数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'closenumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'未结算数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'noclosenumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'物料成本' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'materialcost' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'实际物料成本' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'realmaterialcost' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售主表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'saleid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'salecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'明细号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saledetail', @level2type=N'COLUMN',@level2name=N'saledetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouse', @level2type=N'COLUMN',@level2name=N'inTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouse', @level2type=N'COLUMN',@level2name=N'dept' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouse', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouse', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouse', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售退货单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'returnsalecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售退货明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'returnsaledetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售退货入库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'mastercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售退货入库明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'detailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'salecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'saledetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'productID' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'spec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'入库数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleInWarehouseDetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售出库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouse', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出库日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouse', @level2type=N'COLUMN',@level2name=N'outtime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出库单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouse', @level2type=N'COLUMN',@level2name=N'dept' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouse', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouse', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouse', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主表id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'masterid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售出库单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'mastercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售出库明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'detailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售出货单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'saledelivercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售出货明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'saledeliverdetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'salecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'saledetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'productid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'spec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'出库数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'number' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'saleOutWarehouseDetail', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stock', @level2type=N'COLUMN',@level2name=N'name' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库地址' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stock', @level2type=N'COLUMN',@level2name=N'address' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stock', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'代码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'name' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'今日开盘价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'startPrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'昨日收盘价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'olePrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'当前价格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'nowPrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'今日最高价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'maxPrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'今日最低价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'minPrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'竞买价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'bidderPrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'竞卖价' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'auctionPrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'成交股票数' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'turnover' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'成交金额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'turnoverPrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'买1数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'buyOneNum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'买1价格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'buyOnePrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'买2数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'buyTwoNum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'买2价格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'buyTwoPrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'买3数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'buyThreeNum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'买3价格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'buyThreePrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'买4数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'buyFourNum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'买4价格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'buyFourPrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'买5数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'buyFiveNum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'买5价格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'buyFivePrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'卖1数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'sellOneNum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'卖1价格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'sellOnePrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'卖2数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'sellTwoNum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'卖2价格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'sellTwoPrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'卖3数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'sellThreeNum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'卖3价格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'sellThreePrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'卖4数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'sellFourNum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'卖4价格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'sellFourPrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'卖5数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'sellFiveNum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'卖5价格' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'sellFivePrice' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'stockData', @level2type=N'COLUMN',@level2name=N'timeStr' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'供应商名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'suppliername' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'厂商类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'manufacturertype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'联系人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'contacts' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'供应商地址' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'address' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'增值税税率' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'vatrate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'纳税人识别号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'taxpayeridentity' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'对方收款账号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'bankaccount' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'供应商编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'suppliercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'应付款总额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'payments' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'已结款总额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'totalamountsettled' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'未结款总额' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'totaloutstandingamount' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'修改人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'editorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'修改时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'supplier', @level2type=N'COLUMN',@level2name=N'editTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'数据集名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDataTable', @level2type=N'COLUMN',@level2name=N'DataTableName' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'数据集sql' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDataTable', @level2type=N'COLUMN',@level2name=N'DataTableSql' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'数据集连接' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDataTable', @level2type=N'COLUMN',@level2name=N'DataTableUrl' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'数据源名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDataTable', @level2type=N'COLUMN',@level2name=N'DataSourceName' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDept', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'父ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDept', @level2type=N'COLUMN',@level2name=N'pid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDept', @level2type=N'COLUMN',@level2name=N'name' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'地址' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDept', @level2type=N'COLUMN',@level2name=N'address' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'电话' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDept', @level2type=N'COLUMN',@level2name=N'phone' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDept', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDept', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDept', @level2type=N'COLUMN',@level2name=N'editorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDept', @level2type=N'COLUMN',@level2name=N'editTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictData', @level2type=N'COLUMN',@level2name=N'dictTypeID' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictData', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'值' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictData', @level2type=N'COLUMN',@level2name=N'value' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictData', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'排序' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictData', @level2type=N'COLUMN',@level2name=N'sort' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictData', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictData', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictData', @level2type=N'COLUMN',@level2name=N'editorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'父类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictType', @level2type=N'COLUMN',@level2name=N'pid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictType', @level2type=N'COLUMN',@level2name=N'name' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'排序' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictType', @level2type=N'COLUMN',@level2name=N'sort' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictType', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictType', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictType', @level2type=N'COLUMN',@level2name=N'editorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictType', @level2type=N'COLUMN',@level2name=N'editTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysDictType', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysFunction', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'父ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysFunction', @level2type=N'COLUMN',@level2name=N'pid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysFunction', @level2type=N'COLUMN',@level2name=N'name' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'权限编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysFunction', @level2type=N'COLUMN',@level2name=N'functionCode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'父id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'pid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'菜单名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'name' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'图标' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'icon' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'菜单类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'winformType' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'排序' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'sort' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'有效' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'isEnabled' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'功能按钮' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'toolList' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'editorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'editTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'是否界面' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'isForm' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'是否功能按钮' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysMenu', @level2type=N'COLUMN',@level2name=N'isToolBtn' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysRole', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'公司id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysRole', @level2type=N'COLUMN',@level2name=N'companyId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'公司名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysRole', @level2type=N'COLUMN',@level2name=N'companyName' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'角色名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysRole', @level2type=N'COLUMN',@level2name=N'name' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysRole', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysRole', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysRole', @level2type=N'COLUMN',@level2name=N'editorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysRole', @level2type=N'COLUMN',@level2name=N'editTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysToolButton', @level2type=N'COLUMN',@level2name=N'btnName' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysToolButton', @level2type=N'COLUMN',@level2name=N'btnCode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'图标' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysToolButton', @level2type=N'COLUMN',@level2name=N'btnIcon' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysToolButton', @level2type=N'COLUMN',@level2name=N'remark' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'工号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysUser', @level2type=N'COLUMN',@level2name=N'account' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'用户名' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysUser', @level2type=N'COLUMN',@level2name=N'username' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'密码' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysUser', @level2type=N'COLUMN',@level2name=N'password' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'邮件' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysUser', @level2type=N'COLUMN',@level2name=N'email' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'电话' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysUser', @level2type=N'COLUMN',@level2name=N'mobilephone' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'部门' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysUser', @level2type=N'COLUMN',@level2name=N'deptId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'有效' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysUser', @level2type=N'COLUMN',@level2name=N'isEnabled' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysUser', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'创建时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysUser', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysUser', @level2type=N'COLUMN',@level2name=N'editorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编辑时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'sysUser', @level2type=N'COLUMN',@level2name=N'editTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'工单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'wordordercode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'salecode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'销售明细单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'saledetailcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'工单类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'workordertype' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'productdate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'productdept' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'productcode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'产品名称' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'productid' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'规格型号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'spec' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生产数量' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'productnumber' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'计量单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'完工日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'finishdate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'交货日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'deliverdate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'仓库' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'warehouse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'creatorId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'制单日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'createTime' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'workorder', @level2type=N'COLUMN',@level2name=N'remark' GO