关于SQLite数据库的作业 2

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于SQLite数据库的作业 2相关的知识,希望对你有一定的参考价值。

1查询Student表中的所有记录的Sname、Ssex和Class列。

SELECT sname,ssex,class from Student

技术分享

2查询教师所有的单位即不重复的Depart列。

SELECT Depart from Teachear

技术分享

3查询Student表的所有记录。

SELECT * from Student

技术分享

4查询Score表中成绩在60到80之间的所有记录。

SELECT degree from Score where Degree>60 and Degree<80

技术分享

5查询Score表中成绩为85,86或88的记录。

SELECT Degree from Score WHERE Degree=85 OR Degree=86 or Degree=88

技术分享

6查询Student表中“95031”班或性别为“女”的同学记录。

SELECT * FROM Student WHERE Ssex=‘女‘AND Class=‘95031‘

技术分享

SELECT * FROM Student WHERE Ssex=‘女‘OR Class=‘95031‘

技术分享

7以Class降序查询Student表的所有记录。

SELECT * FROM Student ORDER BY class DESC

技术分享

8以Cno升序、Degree降序查询Score表的所有记录。

升序:SELECT *from Score ORDER BY degree ASC

技术分享

降序:SELECT *from Score ORDER BY degree DESC

技术分享

9查询“95031”班的学生人数。

SELECT * FROM Student WHERE Class=‘95031‘

技术分享

以上是关于关于SQLite数据库的作业 2的主要内容,如果未能解决你的问题,请参考以下文章

sh mysql2sqlite.sh

qt如何调用sqlite数据库

关于SQLite数据库的作业

关于SQLite数据库的作业 2

Android中使用SQLite数据库

Android中使用SQLite数据库