码迷,mamicode.com
首页 >  
搜索关键字:price    ( 2479个结果
mysql基本数据类型
大数据类型 CREATE TABLE DATA(fti TINYINT,fsi SMALLINT, fmi MEDIUMINT,fi INT,fbi BIGINT); int类型 CREATE TABLE data1(age INT(7)); float类型 CREATE TABLE data2(price FLOAT(5,2)); INSERT INTO data2 VALUES(...
分类:数据库   时间:2015-08-01 11:39:34    阅读次数:186
存储与触发器
create procedure BuyFriut @Uid varchar(50), @Fcode varchar(50), @Sl int as begin declare @kc int,@price float select @kc=Numbers,@price=Price from Fru...
分类:其他好文   时间:2015-07-31 23:08:31    阅读次数:152
20150728
var sg_price_limit; // 报价限制var selectPicArray = new Array(); //已选择图片列表/*** 促销车型-图片弹窗车系列表* @param manufacturerId 页面存放厂商的select标签的ID* @param serialGroup...
分类:其他好文   时间:2015-07-28 20:34:40    阅读次数:124
12213123
package com.neu.edu.ppt;import com.neu.edu.desc.ComputerDesc;//pptpublic class Computer { private String seriesNumber; private float price; private...
分类:其他好文   时间:2015-07-28 18:12:49    阅读次数:136
Webform Repeater 显示主外键关系的两个表,参考代码
第一种方法,给car增加属性 public decimal Price { get { return _Price; } set { _Price = value; } } public string Pic...
分类:Web程序   时间:2015-07-28 17:22:54    阅读次数:154
ecshop登录支持手机号码登录、邮箱登录
更改users.php加在 之上if ($user->login($username, $password,isset($_POST['remember']))) { update_user_info(); recalculate_price(); $ucdata = isset($user->uc...
分类:移动开发   时间:2015-07-27 18:11:31    阅读次数:227
面向对象中构造函数的小练习
//写一个Ticket类,有一个距离属性(本属性只读,在构造方法中赋值),不能为负数 //有一个价格属性,价格属性为只读,并且根据距离distance计算价格Price(1元/公里) //0--100公里 票价不打折 ...
分类:其他好文   时间:2015-07-27 11:01:15    阅读次数:397
[LeetCode][Java] Best Time to Buy and Sell Stock IV
题目: Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may complete at most k transactions. Note: Y...
分类:编程语言   时间:2015-07-26 15:56:12    阅读次数:142
[LeetCOde][Java] Best Time to Buy and Sell Stock III
题目: Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may complete at most two transactions. Note: ...
分类:编程语言   时间:2015-07-26 15:53:12    阅读次数:155
mysql查询练习
mysql> #查询每个栏目最贵的商品mysql> select goods_id,shop_price,cat_id from (select goods_id,shop_price,cat_id from goods order by shop_price desc) as temp group...
分类:数据库   时间:2015-07-25 22:48:23    阅读次数:248
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!