在程序中,数据库操作是必不可少的部分,所以我们要备足数据库相关知识才能去应付程序中出现的种种问题。基于此,我特地在国外网站、博客上整理了一些问题,并附带了答案和解释、参考。为了保证“原汁原味”,我就保留了英文。大家也来看看你答对了多少?

1.SQL Server 2008 Backup

题目:Is it possible to restore a SQL Server 2008 Enterprise Edition compressed  backup to a SQL Server 2008 Standard Edition?

答案:yes

解释:RESTORE from compressed backups on SQL Server 2008 Standard Edition is  possible, although the backup compression feature is not supported in SQL Server  2008 Standard Edition.

参考:备份压缩 (SQL Server)

2.Identity

题目:We want to insert record into table a

create table a (a int identity(1,1))

Which statement will work?

  1. insert into a default values
  2. insert into a values (default)
  3. insert into a values (1)
  4. could not insert explicit for identity column

答案:insert into a default values

解释:An insert statement with "default values" works.

参考:INSERT

3.Dynamic SQL

题目:Sam has to run a query dynamically & get the count in a variable and do  some processing based on the count. Which of the following queries will return  expected output?

declare @tablevariable varchar(100)
set @tablevariable = 'Employees'

A)

declare @sql varchar(100)
Declare @cnt int
Set @sql = 'Select ' + Convert(varchar(100),@cnt) + ' =count(*) from ' + @tablevariable
Exec (@sql) select @cnt

B)

declare @sql varchar(100)
Declare @cnt int
Set @sql = 'Select count(*) from ' + @tablevariable
@cnt = Exec (@sql) select @cnt

C)

DECLARE @sql nvarchar(4000), @params nvarchar(4000), @count int
SELECT @sql = N' SELECT @cnt = COUNT(*) FROM dbo.' + quotename(@tablevariable)
SELECT @params = N'@cnt int OUTPUT'
EXEC sp_executesql @sql, @params, @cnt = @count OUTPUT select @count

答案:C

解释:For getting a variable as output in a dynamic statement, we need to use  sp_executeSQL.

参考:Introducing Dynamic SQL

4.T-SQL Output Clause

题目:Executing the following code. How many rows are returned by the first and  second SELECT * FROM #CategoryChanges statements?

USE Northwind;
CREATE TABLE #CategoryChanges
(ChangeID int Primary Key Identity
, CategoryID int
, OldCategoryName nvarchar(15)
, NewCategoryName nvarchar(15)
, ModifiedDate datetime2
, LoginID nvarchar(30));
BEGIN TRANSACTION
UPDATE Categories
SET CategoryName = 'Dried Produce'
OUTPUT inserted.CategoryID, deleted.CategoryName
, inserted.CategoryName, getdate(), SUSER_SNAME() INTO #CategoryChanges
WHERE CategoryID = 7;
SELECT * FROM #CategoryChanges --first select statement
Rollback tran
SELECT * FROM #CategoryChanges --second select statement

Choose your answer:

  1. 1st 0 rows 2nd 0 rows
  2. 1st 1 row, 2nd 0 rows
  3. 1st 1 row. 2nd 2 rows

答案:1st 1 row, 2nd 0 rows

解释:The ROLLBACK TRANSACTION rolls back both the update to the table  categories and the temp table #CategoryChanges.

5.T-SQL

题目:In T-SQL, what would this be considered: " colmnnX IN (x, y, z, ...)"

答案:Predicate

解释:In T-SQL, a PREDICATE allows you to check whether a value or scalar  expression evaluates to TRUE, FALSE, or UNKNOWN. The IN clause, with column and  values becomes a predicate and checks to see if at least one of the elements in  a set is equal to a given value or expression.

参考:谓词 (Transact-SQL)

6.Server Administration

题目:Select the best option to allocate maximum available RAM (Already  installed on Windows) to SQL Server where system has following configuration:  OS: Windows 2008 64 bit, Enterprise Edition. SQL: SQL Server 2008 64 bit,  Enterprise Edition. RAM: 6 GB.

Choose your answer

  1. Enable AWE option from SQL Server configuration
  2. Add /3GB switch in boot.ini
  3. Do Nothing

答案:Do Nothing

解释:AWE is valid option for 32 bit architecture. Note that the sp_configure  awe enabled option is present on 64-bit SQL Server, but it is ignored. It is  subject to removal in future releases or service packs of 64-bit SQL Server.

3 GB Switch is supported for 32 bit editions. It tell operating system to  allocate 2 GB RAM to OS and 2 GB RAM to other program such as SQL Or Exchange,  if 4 GB RAM is installed.

参考:内存体系结构

7.SQL Server 2008

题目:The DEFAULT value for a column can be specified in the definition of a  user-defined table type?

答案:True

解释:A DEFAULT value can be specified in the definition of a user-defined table  type.

参考:CREATE  TYPE (Transact-SQL)

8.Session Settings

题目:In SQL 2008, the QOD_Customers table contains the column [Region] [nvarchar](15)  NULL and 90 rows of data. The following stored procedure is created and then  run.

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[QOD_Test_1]
AS
SET ANSI_DEFAULTS ON
-- Before rollback Select Statement
SELECT COUNT(CompanyName) AS 'Before rollback' FROM [dbo].[QOD_Customers]
WHERE [dbo].[QOD_Customers].[Region] IS NULL
UPDATE Dbo.QOD_Customers SET Region = 'XXX' WHERE dbo.QOD_Customers.region IS NULL
-- The after update Select Statement
SELECT COUNT(CompanyName) AS 'After update' FROM [dbo].[QOD_Customers]
WHERE [dbo].[QOD_Customers].[Region] IS NULL
ROLLBACK TRANSACTION
SET ANSI_DEFAULTS OFF
-- The after rollback Select Statement
SELECT COUNT(CompanyName) AS 'After Rollback' FROM [dbo].[QOD_Customers]
WHERE [dbo].[QOD_Customers].[Region] IS NULL
GO

The before rollback Select statement returns a count of 60. The after update  Select statement returns a count of 0 What count of rows does the after rollback  Select statement return?

答案:60

解释:When ANSI_DEFAULTS is enabled (ON), this option enables the following ISO  settings:...SET IMPLICIT_TRANSACTIONS. Msg 3903 The ROLLBACK TRANSACTION request  has no corresponding BEGIN TRANSACTION.

参考:SET  ANSI_DEFAULTS (Transact-SQL)

9.Severity Levels

题目:Error messages with severity levels below 10 indicate what?

Choose your answer:

  1. Errors can be corrected by the user
  2. Insufficient Resources
  3. Informational messages
  4. Nonfatal Internal Error Detected
  5. SQL Server Error in Resource

答案:Informational messages

解释:This is an informational message that indicates a problem caused by  mistakes in the information the user has entered and not actual errors.

参考:Error  Message Severity Levels

10.Exec on Linked Server

题目:What parameter marker is used, when EXEC() is executed on a Linked Server?

答案:?

解释:There is one thing that you can do with EXEC() at a linked server, that  you cannot do with EXEC() on a local server: you can use parameters, both for  input and output. The confuse matters, you don't use parameters with names  starting with @, instead you use question marks (?) as parameter holders. You  can run this:

DECLARE @cnt int
EXEC('SELECT ? = COUNT(*) FROM Northwind.dbo.Orders WHERE CustomerID = ?',
@cnt OUTPUT, N'VINET') AT SQL2K
SELECT @cnt

参考:How to use EXEC() at Linked Server

11.SQL 2005 - Table-Valued Parameters

题目:In SQL Server 2005 variables and parameters of a table type can be set to  NULL?

答案:SQL 2005 does not support Table-Valued Parameters

解释:Only SQL Server 2008 supports the Table-Valued Parameters. This was not a  feature available in SQL Server 2005.

12.SQL Server 2008 Policy-Based Management

题目:SQL Server 2008 Policies can be defined against the following SQL Server  Editions. Choose all if apply.

Choose your answer:

  1. SQL Server 2008
  2. SQL Server 2005
  3. SQL Server 2000

答案:SQL Server 2008, SQL Server 2005, SQL Server 2000

解释:The Enterprise Policy Management (EPM) Framework leverages and extends the  new Microsoft SQL Server 2008 Policy-Based Management feature across an entire  SQL Server enterprise, including down-level instances of SQL Server such as SQL  Server 2000 and SQL Server 2005.

参考:Enterprise  Policy Management Framework with SQL Server 2008

13.Indexes in SQL Server 2005

题目:What is the maximum number of indexes (clustered and nonclustered) allowed  for a table in SQL Server 2005?

答案:250

解释:Number of Clustered indexes in SQL 2005 is one and 249 non clustered  indexes, altogether 250 indexes for a table in SQL Server 2005. In SQL Server  2008, the maximum is 1000.

参考:CREATE  INDEX (Transact-SQL)

14.Predict output

题目:Try to predict the output of this code...

declare @i int, @j int
set @i = 1
create table #temp (id int)
while (@i<=5)
begin
begin try
begin transaction
if (@i = 3)
set @j = @i/0
insert into #temp values (@i)
commit transaction
end try begin catch
rollback transaction
print 'this is an exception';
end catch set @i = @i + 1
end select * from #temp

Choose your answer:

  1. Results: 1 2 3 4 5 No messages
  2. Results: 1 2 3 No Messages
  3. Results: 1 2 4 5 Message: this is an exception
  4. Results: 1 2 Message: this is an exception

答案:Results: 1 2 4 5 Message: this is an exception

解释:This is a beautiful usage of TRY-CATCH block with looping. This will do  the action, create the error message for the erroneous action, don't disturb the  other actions and iterate until the last one. The results will include 4 rows,  skipping the "3" and the Messages tab will list the exception.

15.Database Size

题目:What is the Initial size of newly created database (w/o specifiing the  size for mdf/ldf)?

答案:3MB

解释:When you create the database without specifying the size for mdf / ldf the  initial size for the database if 3 MB. Click on the database node create new  database enter database name just click on OK. Check the size in properties or  can also see the before creating it in Initial Size col of New database dialog  box.

The default size for an mdf is 2MB and 1MB for an ldf, based on the model  database.

16.Removing permissions

题目:You have a standard SQL Server 2005 instance. You allow the user 'Mary' to  call a stored procedure 'UpdateCustomer' by using the following sql :

grant execute on UpdateCustomer to Mary

Prior to issuing this statement, Mary had no explicit permissions on the SP.  You then realise that you've made a mistake and want to reverse the action you  have just taken. Which statement is the best option, without impacting on any  other effective permissions?

Choose your answer:

  1. REMOVE EXECUTE permission statement
  2. REVOKE EXECUTE permission statement
  3. DENY EXECUTE permission statement
  4. GRANT NONEXECUTE permission statement

答案:REVOKE EXECUTE permission statement

解释:You are simply looking to revoke the permission you have just granted.  DENY would take precedence over any other effective permissions, and may not be  what you want to achieve. REMOVE and GRANT NONEXECUTE are not valid SQL.

17.Declarative Data Integrity

题目:After executing the following code, how many rows remain in each table  (Countries, Cities and Buyers)?

CREATE TABLE Test.Countries(CountryId INT PRIMARY KEY)
INSERT INTO Test.Countries VALUES(1),(2),(3)
GO
CREATE TABLE Test.Cities( CityId INT PRIMARY KEY
,CountryId INT REFERENCES Test.Countries ON DELETE CASCADE);
INSERT INTO Test.Cities VALUES(1,1),(2,1),(3,2)
GO
CREATE TABLE Test.Buyers(CustomerId INT PRIMARY KEY
,CityId INT REFERENCES Test.Cities ON DELETE CASCADE);
INSERT INTO Test.Buyers VALUES(1,1),(2,1),(3,2)
GO
DELETE FROM Test.Countries WHERE CountryId = 1

答案:Countries 2, Cities 1, Buyers 0

解释:The constraints prevent some inserts and deletes from occurring.

参考:级联引用完整性约束

18.Wildcard

题目:From the data below, I need to get records with the FirstName of Kim or  Tim only. Frame the query, applying a wildcard search on the FirstName column.

答案:WHERE FirstName LIKE '[KT]im'

解释:The wildcards that can be used with LIKE include the brackets, [], which match any single character that's included inside them with the data in the field.

参考:LIKE (Transact-SQL)

19.Query cost

题目:Which of the two WHERE clauses is cost effective:

--1.
SELECT [name] FROM teacher WHERE teacher_id IN (SELECT teacher_id FROM student) --2.
SELECT [name] FROM teacher
WHERE EXISTS (SELECT 1 FROM student WHERE teacher.teacher_id = student.teacher_id)

答案:2 is more cost effective

解释:This is not a great question, and there is some debate about it. Please  read the discussion to understand. The original explanation is below:

EXISTS will return a boolean value, while IN retruns actual result set  (making results from IN heavier than EXISTS).

参考:EXISTS (Transact-SQL)IN (Transact-SQL)

20.Bit by bit

题目:What will be result of following query:

DECLARE @bit BIT
SET @bit = 500 IF @bit = 1
PRINT 'yes'
ELSE
PRINT 'no'

答案:yes

解释:Bit constants are represented by the numbers 0 or 1, if a number larger  than one is used, it is converted to one.

参考:常量(Transact-SQL)

21.Rowcount

题目:In SQL Server 2005/2008, what would be the output of this code when you  open a new query window and execute it?

select @@ROWCOUNT
select @@ROWCOUNT

答案:1,1

解释:When we first open a query window, the client must execute something to  connect with no results. However the result of @@rowcount is set to one. If you  were to execute some command like a SET NOCOUNT ON will @@rowcount return 0.

SQL基础问题整理的更多相关文章

  1. 转,异常好的sql 基础知识整理

    转载自:http://blog.csdn.net/u011001084/article/details/51318434 最近从图书馆借了本介绍SQL的书,打算复习一下基本语法,记录一下笔记,整理一下 ...

  2. SQL基础知识整理

    建议:关键字和函数名全部大写:数据库名称.表名称.字段名称全部小写:分号结尾.但是大小写语句不区分,本人讨厌大写(英语菜,不能一眼看出内容),所以全部小写.[]看情况可有可无,{}花括号的内容必须要有 ...

  3. SQL 基础语句整理

    SQL教程 SELECT 语句 SELECT * FROM 表名称 DISTINCT 语句 SELECT DISTINCT 列名称 FROM 表名称 SELECT LastName,FirstName ...

  4. MySQL基础整理(一)之SQL基础(未完成)

    大家好,我是浅墨竹染,以下是MySQL基础整理(一)之SQL基础 1.SQL简介 SQL(Structure Query Language)是一种结构化查询语言,是使用关系模型的数据库应用语言. 2. ...

  5. sql注入知识点整理(基础版)

    sql注入知识点整理(基础版) 基本步骤 判断是否报错 判断闭合符号 判断注入类型 构建payload 手工注入或者编写脚本 基本注入类型 报错型注入 floor公式(结果多出一个1):and (se ...

  6. 数据库整理(三) SQL基础

    数据库整理(三) SQL基础 SQL语言的特点 集数据定义语言(DDL),数据操纵语言(DML),数据控制语言(DCL)功能于一体. 可以独立完成数据库生命周期中的全部活动: ​ ●定义和修改.删除关 ...

  7. Kali Linux渗透基础知识整理(二)漏洞扫描

    Kali Linux渗透基础知识整理系列文章回顾 漏洞扫描 网络流量 Nmap Hping3 Nessus whatweb DirBuster joomscan WPScan 网络流量 网络流量就是网 ...

  8. 第一章 SQL基础

    第一部分:SQL基础1. 为什么学习SQL自人类社会形成之日起,社会的运转就在不断地产生和使用各种信息(文献.档案.资料.数据等):在如今所谓的信息时代,由于计算机和互联网的作用,信息的产生和使用达到 ...

  9. 【OGG】OGG基础知识整理

    [OGG]OGG基础知识整理 一.GoldenGate介绍 GoldenGate软件是一种基于日志的结构化数据复制软件.GoldenGate 能够实现大量交易数据的实时捕捉.变换和投递,实现源数据库与 ...

随机推荐

  1. Python中的文本(一)

    本文主要记录和总结本人在阅读<Python标准库>一书,文本这一章节的学习和理解. 事实上在Python中,使用文本这种一些方法是特别经常使用的一件事.在一般的情况下,都会使用String ...

  2. 学习笔记:Vue——混入

    前言: 到现在用Vue做了不少项目了,用到的都是初阶的功能,很多高阶能力都没有用到.仅用初级阶段也能做项目,甚至是复杂项目,可见vue之强大,果然是渐进式开发方式. 但是本着虚心学习的态度,还是要抽空 ...

  3. mysql 配置,还得多看看~

    http://blog.chinaunix.net/uid-20639775-id-154429.html

  4. 基于深度学习的人脸识别系统(Caffe+OpenCV+Dlib)【三】VGG网络进行特征提取

    前言 基于深度学习的人脸识别系统,一共用到了5个开源库:OpenCV(计算机视觉库).Caffe(深度学习库).Dlib(机器学习库).libfacedetection(人脸检测库).cudnn(gp ...

  5. 动词 + to do、动词 + doing

    1. 含义有重大区别 动词+to do 与 动词 + doing,具有较大含义上的差别的动词主要有: stop finish forget 在这些单词的后面,自然 to do 表示未做的事,doing ...

  6. apper

    查漏补缺系列之dapper初体验   什么是dapper 在维护一些较老的项目的时候,往往我们会用很多sql那么这个时候我们要考虑优化这些项目的时候,我们就可以使用dapper dapper 是一款轻 ...

  7. ios本地相册 照像 本地视频

    -(IBAction)btnClick{ UIActionSheet* actionSheet = [[UIActionSheet alloc] initWithTitle:nil delegate: ...

  8. NSArray NSDictionary一些用法

    //从字符串分割到数组- componentsSeparatedByString: NSString *str = [NSString alloc] initWithString:@"a,b ...

  9. [Err] 1136 - Column count doesn&#39;t match value count at row 1

    1 错误描写叙述 [Err] 1136 - Column count doesn't match value count at row 1 Procedure execution failed 113 ...

  10. javascrit开发的基本代码结构的

    今天看到群里一个demo,简单看了一下. 然后自己就写了一个通用的javascrit开发的基本代码结构的js文件. 代码例如以下: (function($,win){ //定义全局变量对象 var o ...