SQL C# nvarchar类型转换为int类型 多表查询的问题,查询结果到新表,TXT数据读取到控件和数据库,生成在控件中的数据如何存到TXT文件中
在数据库时候我设计了学生的分数为nvarchar(50),是为了在从TXT文件中读取数据插入到数据库表时候方便,但是在后期由于涉及到统计问题,比如求平均值等,需要int类型才可以,方法是:Convert(int,字段名)。例如:select avg(Convert(int,M_Score)) from temp
建立视图,将视图当表示用
CREATE VIEW temp AS
select StudentId, MAX(StudentScore) as M_Score
from T_StudentScores group by StudentId;
----------------------------------------------------------
建立两个表之间的关系,内部连接
select * from T_StudentScores inner join temp
on temp.StudentId=T_StudentScores.StudentId and T_StudentScores.StudentScore=temp.M_Score
-----------------------------------------------------------------------
将查询结果放入新表中的语句参考:
SELECT TOP * into newtable FROM [oldtable] Where UserID= Order By CreateTime Desc;
select * into newTable from temp
-------------------------------------------------------------------------------------
TxT文件数据导入数据库:
private void btnImport_Click(object sender, RoutedEventArgs e)
{
string connStr = ConfigurationManager.ConnectionStrings["dbStudentScoreStr"].ConnectionString;
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = "文本文件|*.txt";
if (ofd.ShowDialog() == false)
{
return;
}
string[] lines = File.ReadLines(ofd.FileName, Encoding.Default).ToArray(); DataTable table = new DataTable();
table.Columns.Add("Id");
table.Columns.Add("StudentId");
table.Columns.Add("StudentName");
table.Columns.Add("Category");
table.Columns.Add("StudentScore");
//查看文件的编码格式,可以在文件->另存为->编码中查看,若是ANSI使用参数DEFAULT编码即可,
//若是UTF-8不使用参数,或是指定UTF-8即可
//使用如下的方式将其变成string数组 for (int i = ; i < lines.Count(); i++)
{
string line = lines[i];
//注意文件里是按制表符来分割的,不是字符串
string[] strs = line.Split('\t');//‘\t’为制表符
int id = Convert.ToInt32(strs[]);
string studentId = strs[];
string studentName = strs[];
string category = strs[];
string studentScore = strs[]; DataRow row = table.NewRow();//创建一个DataRow对象
row["Id"] = id;//一定要在一开始创建table.Columns添加列
row["StudentId"] = studentId;
row["StudentName"] = studentName;
row["Category"] = category;
row["StudentScore"] = studentScore;
table.Rows.Add(row);//NewRow只是创建,没有插入
}
using (SqlBulkCopy bulkCope = new SqlBulkCopy(connStr))
{
bulkCope.DestinationTableName = "T_StudentScores";
//添加dataTable中列名与数据库表中列名的映射
bulkCope.ColumnMappings.Add("Id", "Id");
bulkCope.ColumnMappings.Add("StudentId", "StudentId");
bulkCope.ColumnMappings.Add("StudentName", "StudentName");//dataTable中与数据库表的对应关系(datatable中的名字,数据库中的名字)
bulkCope.ColumnMappings.Add("Category", "Category");
bulkCope.ColumnMappings.Add("StudentScore", "StudentScore");
bulkCope.WriteToServer(table);
} MessageBox.Show("导入成功");
}
------------------------------------------------------------------------
TXT文本数据直接读取到控件上:
string[] lines = File.ReadAllLines("C:/Documents and Settings/Administrator/桌面/12.txt"); //读取所有行的代码
foreach (var line in lines)
{
string[] str = line.Split('\t');//分析数据是以Tab键分割的,所以去除
控件.Text = str[];
控件2.Text = str[];
}
--------------------------------------------------------------------
数据如何存到TXT文件中:如果控件的数据是Datagrid中的,且是以对象的方式显示,在保存时候用Tab键分割。
private void btnOutput_Click(object sender, RoutedEventArgs e)
{
string str;
StudentDAL dal = new StudentDAL();
Student[] students = dal.ListStudentMaxScore();
StreamWriter sw = new StreamWriter(@"C:/Documents and Settings/Administrator/桌面/3.txt", false, Encoding.Default); for(int i=;i<students.Length;i++)
{
Student student = new Student();
student =students[i];
string stName=student.StudentName;
string tab="\t";
string stScort=student.StudentScore;
str = strcat(strcat(stName, tab), stScort); sw.WriteLine(str); }
sw.Close();
MessageBox.Show("成功导出!"); }
-------------------------------------------------------------
控件中的数据导出到TXT格式:
public void Save_Quit()
{
string[] str = { txtMinX.Text, txtMaxX.Text, txtMaxY.Text, txtMinY.Text };
StreamWriter sw = new StreamWriter(@"C:/Documents and Settings/Administrator/桌面/2.txt", false, Encoding.Default);
string str1;
for (int i = ; i < str.Length; i++)
{
str1 = str[i];
sw.WriteLine(str1); }
sw.Close();
this.Close(); }
SQL C# nvarchar类型转换为int类型 多表查询的问题,查询结果到新表,TXT数据读取到控件和数据库,生成在控件中的数据如何存到TXT文件中的更多相关文章
- Java进阶(二十三)java中long类型转换为int类型
java中long类型转换为int类型 由int类型转换为long类型是向上转换,可以直接进行隐式转换,但由long类型转换为int类型是向下转换,可能会出现数据溢出情况: 主要以下几种转换方法,供参 ...
- java中long类型转换为int类型
由int类型转换为long类型是向上转换,可以直接进行隐式转换,但由long类型转换为int类型是向下转换,可能会出现数据溢出情况: 主要以下几种转换方法,供参考: 一.强制类型转换 [java] l ...
- pandas把'<m8[ns]'类型转换为int类型进行运算
工作中经常碰到两列数据为date类型,当这两列数据相减或者相加时,得到天数,当运用这个值进行运算会报错:ufunc true_divide cannot use operands with types ...
- double类型转换为int类型四舍五入工具类
package com.qiyuan.util; import java.math.BigDecimal; import java.text.DecimalFormat; public class G ...
- SQL 对decimal类型转换为int类型
) AS INT) CountQty select ISNULL( CAST(E.Qty AS INT),0 ) FROM OrderDetail E 空值 需要默认为0 即可
- 34 char类型转换为int类型
#include<iostream> #include<cstdlib > using namespace std; int main() { char a=101; int ...
- C++中的string类型转换为int类型
给定一个十进制整数n,输出n的各位数字之和 #include<iostream> #include<string> using namespace std; int main( ...
- lgp20151222 java中如何将Object类型转换为int类型
if (object instanceof Integer) { Integer.parseInt(object.toString()); } 很简单是不是?我就想提醒下自己,java有个特殊词 ...
- 随性练习:excel中文字和链接存到html文件
这是一个简单的练习,主要是将excel中文字和链接存到html文件中,并且可通过点击文字直通链接 excel格式如下图示,我这里得excel是07版的,所以用到xlrd模块 代码: import xl ...
随机推荐
- flume+kafka+storm单机部署
flume-1.6.0 kafka0.9.0.0 storm0.9.6 一.部署flume 1.解压 tar -xzvf apache-flume-1.6.0-bin.tar.gz -C ../app ...
- Hibernate中自带ID的generator的含义
increment:代理主键,适合于所有数据库,由hibernate维护主键自增,和底层数据库无关,但是不适合于2个或以上hibernate进程. identity:代理主键,适合于Mysql或ms ...
- linux yum安装mongodb
1.yum -y install mongodb-server mongodb 2.service mongod start #启动mongodb 服务 3. ...
- Android中的shape
在Android程序开发中,我们经常会去用到Shape这个东西去定义各种各样的形状,shape可以绘制矩形环形以及椭圆,所以只需要用椭圆即可,在使用的时候将控件比如imageview或textview ...
- Struts2如何传值到jsp页面
Struts2如何传值到jsp页面 不是action传值到jsp页面,而是jsp页面获取action中的属性值,或者范围(如request,session,application等)里的值.所以,有两 ...
- ShellExecute, WinExec, CreateProcess区别
ShellExecute ShellExecute的功能是运行一个外部程序(或者是打开一个已注册的文件.打开一个目录.打印一个文件等等),并对外部程序有一定的控制. 有几个API函数都可以实现这些功能 ...
- js获取不同浏览器盒子宽度高度
DTD 已声明 IE document.documentElement.scrollHeight 浏览器所有内容高 度 ,document.body.scrollHeight 浏览器所有内容高度 do ...
- iwlist等工具的移植
http://blog.csdn.net/jk110333/article/details/8658054 参考了这边文章 -------------------------------------- ...
- STM32F4系统时钟配置及描述
STM32F4系统时钟配置及描述 stm32f407时钟配置方法(感觉很好,分享一下) STM32F4_RCC系统时钟配置及描述 STM32F4时钟设置分析 stm32f4 - 时钟树分析配置
- Mybatis 一对一,一对多,多对一,多对多的理解
First (一对一) 首先我来说下一对一的理解,就是一个班主任只属于一个班级,一个班级也只能有一个班主任.好吧这就是对于一对一的理解 怎么来实现呢? 这里我介绍了两种方式: 一种是:使用嵌套结果映射 ...