码迷,mamicode.com
首页 >  
搜索关键字:customer    ( 1303个结果
SAP ABAP Extensions
SAP ABAP ExtensionsSometimes it is not possible to adapt the system to the customer needs only by customizing. In these cases, the system needs to be ...
分类:其他好文   时间:2014-09-15 22:49:49    阅读次数:211
MySQL – optimizer_search_depth
Working on customer case today I ran into interesting problem – query joining about 20 tables (thank you ORM by joining all tables connected with fore...
分类:数据库   时间:2014-09-13 17:17:05    阅读次数:294
如何替换B字段内包含A字段的那部分内容
Customer表A字段 varchar(50) 内容(客户姓名)B字段 varchar(1000) 内容(其他字符...客户姓名...其他字符)需要达到效果:将B字段中的客户姓名替换掉B字段内容替换成(其他字符......其他字符)如何将每个数据行内的B字段内所有符合A字段内容的文字部分替换成空隔...
分类:其他好文   时间:2014-09-12 16:53:53    阅读次数:170
项目总结之MIT (一)
打开Plan才知道,原来这个项目伴随了我整个八月,做项目的时间果然特别快~~首先把之前出现但是只知其然但是不知其所以然的知识点总结一下一、使用母版页二、Ajax 控件 & Customer Control (ScriptManager PageLock UpdatePanel CalendarExt...
分类:其他好文   时间:2014-09-09 18:01:49    阅读次数:228
使用Lazy<T>实现对客户订单的延迟加载
"延迟加载"是指在需要的时候再加载数据。比如获得一个Customer信息,并不会把该Customer的Orders信息一下加载出来,当需要显示Orders的时候再加载。简单来说,就是按需加载。使用"延迟加载"的好处是减少应用程序响应时间,降低内存消耗,避免不必要的数据库交互。 □ 即时加载 创建Or...
分类:其他好文   时间:2014-09-06 22:27:54    阅读次数:416
关联更改,内部需要引用表名
select A.Id,A.Email,(select C.Email from [nopCommerce].[dbo].[Customer] C left join [nopCommerce].[dbo].CustomerAddresses CA on C.Id=CA.Customer_Id wh...
分类:其他好文   时间:2014-09-05 12:55:51    阅读次数:194
softlayerFastUploadVHDtoBS
Object Storage UploaderOverviewWe’ve recently added the option to import customer-supplied Virtual Hard Disks (VHDs) to our object storage offering. T...
分类:其他好文   时间:2014-09-03 16:39:26    阅读次数:205
经典的观点挖掘算法(文本挖掘系列)
最近阅读了美国伊利诺伊大学教授刘兵的一篇关于观点挖掘的KDD论文(Mining and Summarizing Customer Reviews),其观点挖掘算法非常经典,特此做记录,互相探讨。...
分类:其他好文   时间:2014-08-31 12:00:01    阅读次数:701
yii2.0 curd操作
$customer=new Customer();//插入操作$customer->name='小熊';$customer->save();//修改操作$model=Customer::findOne(1);$model->name='小洋';$model->save();/* ----------...
分类:其他好文   时间:2014-08-27 18:12:59    阅读次数:22790
yii2.0 事务
$transaction=\Yii::$app->db->beginTransaction();$model=Customer::findOne(1);$model->name='洋';$model->save(false);$model->update(['age'=>5]);$model->sa...
分类:其他好文   时间:2014-08-27 18:08:38    阅读次数:759
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!