-
C# 利用聚合函数MIN求销售额、利润最少的商品
C# 利用聚合函数MIN求销售额、利润最少的商品,具体来说是查询利润最少的商品信息,查询销售额最少的商品信息,查询结果将绑定显示于DataGridView数据网格控件中。
下面以查询销售额最少的商品信息为例,帖出具体的代码实现:
private DataTable GetMoney()
{
string P_Str_ConnectionStr = string.Format(//创建数据库连接字符串
@"server=WIN-GI7E47AND9RLS;database=db_TomeTwo;uid=sa;pwd=");
string P_Str_SqlStr = string.Format(//创建SQL查询字符串
"SELECT * FROM tb_Ware WHERE 销价 IN(SELECT MIN(销价) FROM tb_Ware)");
SqlDataAdapter P_SqlDataAdapter = new SqlDataAdapter(//创建数据适配器
P_Str_SqlStr, P_Str_ConnectionStr);
DataTable P_dt = new DataTable();//创建数据表
P_SqlDataAdapter.Fill(P_dt);//填充数据表
return P_dt;//返回数据表
}
其它部分的查询请下载本源码包。
- 2022-07-25 21:11:39下载
- 积分:1
-
WPF3D直升机源码
很好的WPF绘制直升机的源代码,初学者很有参考价值
- 2022-11-16 21:40:03下载
- 积分:1
-
fjm0181106-10
一款用vc++编写的画图软件,本软件提供了画一些基本图形的功能,还有将图形进行填充。(vc with one prepared by the drawing software, the software provides a graphic pictures of some of the basic functions, there will be graphics for filling.)
- 2005-03-15 10:23:56下载
- 积分:1
-
SimpleVideo
video play over internet
- 2010-04-26 21:35:35下载
- 积分:1
-
1
说明: 此压缩文件中是通信工程师中级考前辅导材料,是CDMA蜂窝系统的知识复习资料,里面有CDMA蜂窝系统知识的全面覆盖。(This compressed file is a communication engineer Intermediate prep materials, is the knowledge of CDMA cellular system review the information, which has a comprehensive knowledge of CDMA cellular system coverage.)
- 2013-09-27 17:05:25下载
- 积分:1
-
blur-detection
检测图像模糊的算法代码,具体说明详见readme(Fuzzy image detection algorithm code, specific instructions, see readme)
- 2017-07-21 09:53:31下载
- 积分:1
-
LTC3300_code
电池均衡 LTC3300的均衡程序 主动均衡(Battery Balance LTC3300 Balance Program Active Balance)
- 2020-07-03 10:00:02下载
- 积分:1
-
xxxcd
光纤陀螺输出误差的allan方差分析,添加噪声处理,处理信号的时频分析。( allan FOG output error variance analysis, Add noise processing, When processing a signal frequency analysis.)
- 2017-04-20 14:52:58下载
- 积分:1
-
xml文件读写
本程序是一个简单而有效的实现xml文件读写的功能。创建一个结构体,包含所需要读取或者写入到文件的每一个变量,调用tinyxml静态库,可以将所有变量按照标签格式写入到文件,也可以从文件中读取到结构体对象中。
- 2022-05-21 05:25:28下载
- 积分:1
-
BitmapButton_proj
实现了在按钮上添加位图的功能.通过BitBlt函数实现所需要的功能.(Realize the button to add a bitmap functions. BitBlt function through realize the functionality required.)
- 2008-02-26 11:07:09下载
- 积分:1