数据库中学生表和课程表如下:内连接sql语句:select a.studentName,a.studentAge,b.courseName from student a inner join course b on a.studentID=b.studentID查询结果如下:查询的结果是以从表cou... Read More
posted @ 2015-04-03 14:13 一夜秋2014 Views(2254) Comments(0) Diggs(0) Edit
数据库中学生表和课程表如下:左连接sql语句:select a.studentName,a.studentAge,b.courseName from student a left join course b //left join 左连接,以左表为主on a.studentID=b.studentI... Read More
posted @ 2015-04-03 11:46 一夜秋2014 Views(2694) Comments(0) Diggs(0) Edit
先看如下程序:class Program { static void Main(string[] args) { int x = 0; int y = 0; int i = 2; ... Read More
posted @ 2015-04-03 10:34 一夜秋2014 Views(165) Comments(0) Diggs(0) Edit