题库 软件开发 题目列表 假设58同城的帖子都存在mysql5.6中,帖子的建表语句...
单选题
假设58同城的帖子都存在mysql5.6中,帖子的建表语句如下:
CREATE TABLE  info (
  id             int         NOT NULL AUTO_INCREMENT COMMENT '主键',
  uid             int         NOT NULL COMMENT '用户id',
  cid             int         NOT NULL COMMENT '城市id',
  title            varchar(32) NOT NULL DEFAULT '' COMMENT '标题',
  content      varchar(1024)         NOT NULL DEFAULT '' COMMENT '内容',
  PRIMARY KEY (id),
  UNIQUE KEY uniq_index (uid,cid,title)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='帖子表';
以下哪个sql语句不会用到索引?
A.

select title,content from info where id = 278;

B.

select title,content from info where uid > 1357912312 and cid > 1;

C.

select title,content from info where uid = 1357912312 and title like '%招聘%';

D.

select title,content from info where cid = 1 ;

题目信息
校招真题
-
正确率
0
评论
25
点击