当前位置:   article > 正文

数据库面试题(一)_sqlite面试题

sqlite面试题

什么是SQL

  • SQL(structured query language):结构化查询语言
  • SQL是一种对关系型数据库中的数据进行定义和操作的语言
  • SQL语言简洁,语法简单,好学好用

常用关系型数据库
PC端:Oracle、MySQL、SQL Server、Access、DB2、Sybase
嵌入式\移动客户端:SQLite
sqlite轻量级数据库

  • 完全配置时小于 400K,省略可选功能配置时小于 250K
  • 字段(Col / Field):一个字段存储一个值,可以存储 INTEGER, REAL, TEXT, BLOB, NULL五种类型的数据
  • SQLite 在存储时,本质上并不区分准确的数据类型
  • 数据库主要的目的是做数据的检索,通常不会把无法检索的二进制数据保存在数据库中

主键:Primary Key,唯一标示一条记录的字段,具有以下特点:

  • 名字:xxx_id
  • 类型:Integer
  • 自动增长
  • 准确数值由数据库决定,程序员不用关心

外键:Foreign Key,对应其他关系表的标示,利用外键 可以和另外一个表建立起"关系"

  • 方便数据维护
  • 节约存储空间

字段类型

  • 空(NULL):该值为空
  • 整型(INTEGEER):有符号整数,按大小被存储成1,2,3,4,6或8字节。
  • 实数(REAL):浮点数,以8字节指数形式存储。
  • 文本(TEXT):字符串,以数据库编码方式存储(UTF-8, UTF-16BE 或者 UTF-16-LE)。
  • BLOB:BLOB数据不做任何转换,以输入形式存储。(二进制数据,比如文件)
    ps:在关系数据库中,CLOB和BLOB类型被用来存放大对象。BOLB表示二进制大对象,这种数据类型通过用来保存图片,图象,视频等。CLOB表示字符大对象,能够存放大量基于字符的数据。

SQL语句的特点
不区分大小写(比如数据库认为user和UsEr是一样的)
每条语句都必须以分号 ; 结尾

SQL中的常用关键字:

  • select、insert、update、delete、from、create、where、desc、order、by、group、table、alter、view、index等等数据库中不可以使用关键字来命名表、字段

SQL语句的种类

数据定义语句(DDL:Data Definition Language)

  • 包括create和drop等操作
  • 在数据库中创建新表或删除表(create table或 drop table)

数据操作语句(DML:Data Manipulation Language)

  • 包括insert、update、delete等操作
  • 上面的3种操作分别用于添加、修改、删除表中的数据

数据查询语句(DQL:Data Query Language)

  • 可以用于查询获得表中的数据
  • 关键字select是DQL(也是所有SQL)用得最多的操作
  • 其他DQL常用的关键字有where,order by,group by和having

常用SQL语句

  • 创建表(create)
    //创建表如果不存在的话
  create table if not exists 表名 (字段名1 字段类型1,字段名2 字段类型2, …)
  • 1

//创建表

create table t_student (id integer, name text, age inetger, score real)
  • 1

//简写

create table t_student(name, age);
  • 1

实际上SQLite是无类型的,因此可以简写create table t_student(name, age);
为了保持良好的编程规范、方便程序员之间的交流,编写建表语句的时候最好加上每个字段的具体类型

  • 删除表(drop)

//删除表,如果存在的话

drop table if exists t_student
  • 1

//删除表

drop table t_student;
  • 1
  • 插入数据(insert)
insert into 表名 (字段1, 字段2, …) values (字段1的值, 字段2的值, …) ;
  • 1
  • 更新数据(update)
update 表名 set 字段1 = 字段1的值, 字段2 = 字段2的值, … ; 
  • 1

//更新数据

update t_student set name = ‘jack’, age = 20 ; 
  • 1

注意:上面的示例会将t_student表中所有记录的name都改为jack,age都改为20

  • 删除数据(delete)
	delete from 表名 ;
  • 1

//删除表内容

	delete from t_student ;
  • 1

上面的示例会将t_student表中所有记录都删掉

  • 条件语句

    如果只想更新或删除某条固定的记录,那么就必须在DML语句后面加上一些条件

where 字段 = 某个值 ; // 不能用两个 =
where 字段 is 某个值 ; // is 相当于 =
where 字段 != 某个值 ;
where 字段 is not 某个值 ; // is not 相当于 !=
where 字段 > 某个值 ;
where 字段1 = 某个值 and 字段2 > 某个值 ; // and相当于C语言中的 &&
where 字段1 = 某个值 or 字段2 = 某个值 ; // or 相当于C语言中的 ||
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

示例

//将t_student表中年龄大于10 并且 姓名不等于jack的记录,年龄都改为 5
update t_student set age = 5 where age > 10 and name != ‘jack’ ;
//删除t_student表中年龄小于等于10 或者 年龄大于30的记录
delete from t_student where age <= 10 or age > 30 ;
//猜猜下面语句的作用
update t_student set score = age where name = ‘jack’ ;
//将t_student表中名字等于jack的记录,score字段的值 都改为 age字段的值
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 查询语句(select)
select 字段1, 字段2, … from 表名 ;
select * from 表名; // 查询所有的字段
select name, age from t_student ;
select * from t_student ;
select * from t_student where age > 10 ;  //  条件查询
  • 1
  • 2
  • 3
  • 4
  • 5
  • 别名
select 字段1 别名 , 字段2 别名 , … from 表名 别名 ;
select 字段1 别名, 字段2 as 别名, … from 表名 as 别名 ;
select 别名.字段1, 别名.字段2, … from 表名 别名 ;
  • 1
  • 2
  • 3

字段和表都可以起别名
示例

select name myname, age myage from t_student ;
//给name起个叫做myname的别名,给age起个叫做myage的别名
select s.name, s.age from t_student s ;
//给t_student表起个别名叫做s,利用s来引用表中的字段
  • 1
  • 2
  • 3
  • 4

常用复合语句

  • 计算记录的数量
select count (字段) from 表名 ;
select count ( * ) from 表名 ;
注意:该语句是复合语句
//计算age数量
select count (age) from t_student ;
//计算分数大于等于60的数量
select count ( * ) from t_student where score >= 60;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 排序
查询出来的结果可以用order by进行排序
select * from t_student order by 字段 ;
select * from t_student order by age ;
默认是按照升序排序(由小到大),也可以变为降序(由大到小)
select * from t_student order by age desc ; //降序
select * from t_student order by age asc ; // 升序(默认)
也可以用多个字段进行排序
select * from t_student order by age asc, height desc ;
//先按照年龄排序(升序),年龄相等就按照身高排序(降序)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • limit限制搜索范围
使用limit可以精确地控制查询结果的数量,比如每次只查询10条数据
select * from 表名 limit 数值1, 数值2 ;
select * from t_student limit 4, 8 ;
//可以理解为:跳过最前面4条语句,然后取8条记录
limit常用来做分页查询,比如每页固定显示5条数据,那么应该这样取数据
第1页:limit 0, 5
第2页:limit 5, 5
第3页:limit 10, 5
…
第n页:limit 5*(n-1), 5
select * from t_student limit 7 ;
//相当于select * from t_student limit 0, 7 ;
//表示取最前面的7条记录
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

约束

  • 简单约束

建表时可以给特定的字段设置一些约束条件,常见的约束有

not null :规定字段的值不能为null
unique :规定字段的值必须唯一
default :指定字段的默认值
  • 1
  • 2
  • 3

建议:尽量给字段设定严格的约束,以保证数据的规范性)
示例

create table t_student (id integer, name text not null unique, age integer not null default 1) ;
//name字段不能为null,并且唯一
//age字段不能为null,并且默认为1
  • 1
  • 2
  • 3

主键约束
什么是主键?

  • 主键(Primary Key,简称PK)用来唯一地标识某一条记录

  • 例如t_student可以增加一个id字段作为主键,相当于人的身份证

  • 主键可以是一个字段或多个字段

    良好的数据库编程规范应该要保证每条记录的唯一性,为此,增加了主键约束,也就是说,每张表都必须有一个主键,用来标识记录的唯一性

主键的设计原则

  • 主键应当是对用户没有意义的
  • 永远也不要更新主键
  • 主键不应包含动态变化的数据
  • 主键应当由计算机自动生成

主键的声明
1.在创表的时候用primary key声明一个主键

create table t_student (id integer primary key, name text, age integer) ;
//integer类型的id作为t_student表的主键
  • 1
  • 2

1.主键的字段

  • 只要声明为primary key,就说明是一个主键字段
  • 主键字段默认就包含了not null 和 unique 两个约束

如果想让自增长,应该增加autoincrement

create table t_student (id integer primary key autoincrement, name text, age integer) ;
  • 1

外键约束
什么是外键约束?作用?
利用外键约束可以用来建立表与表之间的联系
外键的一般情况是:一张表的某个字段,引用着另一张表的主键字段

create table t_student (id integer primary key autoincrement, name text, age integer, class_id integer, constraint fk_t_student_class_id_t_class_id foreign key (class_id) references t_class (id)) ; 
//t_student表中有一个叫做fk_t_student_class_id_t_class_id的外键
//这个外键的作用是用t_student表中的class_id字段引用t_class表的id字段
  • 1
  • 2
  • 3

表连接查询
什么是表连接查询?
需要联合多张表才能查到想要的数据。
表连接的类型
内连接:inner join 或者 join (显示的是左右表都有完整字段值的记录)
左外连接:left outer join (保证左表数据的完整性)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/314603
推荐阅读
相关标签
  

闽ICP备14008679号