摘要:
http://www.cnblogs.com/york-hust/archive/2012/03/27/2419582.html首先...我说的命令行是指Ctrl+Alt+F1~F6开启的纯命令行模式 不是在X Window里打开的终端...如果你遇到的是终端里无法显示中文这篇文里的方法基本对你没用....可以跳过了~言归正传 纯命令行中中文无法显示解决方法1:学好英文..把环境变量设置为英文....(别抽我..)修改/etc/default/localesudo vim /etc/default/locale1修改默认的LANG=zh_CN.UTF-8 LANGUAGE=zh_CN:zh为. 阅读全文
摘要:
1、查询“001”课程比“002”课程成绩高的所有学生的学号; 1查出001的成绩表A,2再查出002的成绩B,3关联AB,查出A表中成绩大于B表的S#。select A.S# from(select S#,score from SCwhere Sc.C#=001) Aleft join (sele... 阅读全文
摘要:
建表create table Student(S# int not null primary key ,Sname nvarchar(20),Sage int,Ssex varchar(4))create table Course(C# int not null primary key, Canme nvarchar(10),T# int)Create table SC(S# int not null,C# int not null,score int) //这看题直接建,发现没主键create table Teacher(T# int not null primary key,Tname n 阅读全文
摘要:
转自 http://blog.csdn.net/htl258/article/details/3945715Student(S#,Sname,Sage,Ssex) 学生表Course(C#,Cname,T#) 课程表SC(S#,C#,score) 成绩表Teacher(T#,Tname) 教师表问题:1、查询"001"课程比"002"课程成绩高的所有学生的学号; select a.S# from (select s#,score from SC where C#='001') a,(select s#,score from SC wher 阅读全文