SQL基础问题整理

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

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]
ASSET ANSI_DEFAULTS ON
-- Before rollback Select StatementSELECT COUNT(CompanyName) AS 'Before rollback' FROM [dbo].[QOD_Customers]WHERE [dbo].[QOD_Customers].[Region] IS NULLUPDATE Dbo.QOD_Customers SET Region = 'XXX' WHERE dbo.QOD_Customers.region IS NULL
-- The after update Select StatementSELECT COUNT(CompanyName) AS 'After update' FROM [dbo].[QOD_Customers]WHERE [dbo].[QOD_Customers].[Region] IS NULLROLLBACK TRANSACTION SET ANSI_DEFAULTS OFF
-- The after rollback Select StatementSELECT 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 intset @i = 1
create table #temp (id int)while (@i<=5)beginbegin trybegin transactionif (@i = 3) set @j = @i/0insert into #temp values (@i)commit transactionend try begin catchrollback transactionprint 'this is an exception';end catchset @i = @i + 1 endselect * 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)
GODELETE 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.

like语法

答案: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 = 500IF @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.

转载于:https://www.cnblogs.com/jameslif/p/3620907.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/432748.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

计算机突然从桌面消失了,电脑桌面突然什么都没有了,怎么处理

★桌面&#xff0d;点击鼠标右键&#xff0d;点击排列图标&#xff0d;点击显示桌面图标★在桌面上右键点击→“属性”→桌面项→左下有个“自定义桌面”进入设置&#xff0c;把你需要的桌面项目打上勾&#xff0c;然后确定就行了。★先按ctrlaltdel三键打开任务管理器&#xf…

V210 时区

V210默认时区是格林尼治时间&#xff0c;只要把ubuntu的/etc/localtime文件拷贝到板子上就可以了 用date -R可以看到时区是否正确

腾讯或联姻优酷,微信嫁女模式引发互联网通婚潮流

据消息称&#xff1a;腾讯在前段时间联姻京东后有可能继续做甩手掌柜&#xff0c;这回要甩的是腾讯视频。 前几年&#xff0c;最火爆的电商业务除了电商外&#xff0c;再者一个就是视频业务了。 不知道大家还记得优酷当时的崛起之初的情景么?我来罗列一下&#xff1a; 1、 大…

微型计算机键盘上的西服的间称为,一台完整的微型计算机主要由主机箱. .键盘.鼠标及音箱.打印机组成....

阅读下面的文字&#xff0c;完成后面题目。(25分)“博客之父”方兴东(节选)打开百度&#xff0c;输入“方兴东’’搜索&#xff0c;100多万条信息赫然呈现。罩在方兴东头上的光环颇多&#xff1a;清华大学博士、专栏作家、互联网评论家……而“中国博客之父”的称号&#xff0c…

mplayer

mplayer -af volume20 *.mp3 经测试&#xff0c;volume在-50和50这个区间就可以了&#xff0c;0最佳&#xff0c;超过0就爆音

[翻译] 学习iOS开发的建议:如何从菜鸟到专家

[文章原地址] http://mobile.tutsplus.com/tutorials/iphone/ios-quick-tip-from-novice-to-expert/ 翻译有误之处请勿见笑&#xff0c;本人将在文章的部分地方添加注释&#xff0c;并根据需求增减文章内容&#xff0c;在此对原作者辛勤劳作表示感谢 iOS Quick Tip: From Novi…

计算机工程与应用查重吗,计算机工程期刊录用率_计算机工程与应用期刊_计算机八大核心期刊...

《计算机工程》杂志怎么样都是各高校开设的课程也不尽相同&#xff0c;但学习深度和侧重点不一样。计算机科学期刊写人脸检测的录取率高吗计算机专业发一篇sci相对比较容易&#xff0c;所以必须看你在那个杂志上发表&#xff0c;下面最顶级的也就是计算机一区的期刊&#xff0c…

如何将多个源文件编译为一个.ko

陆陆续续也写了几个Linux内核模块了&#xff0c;但每次都是把代码写在一个源文件中&#xff0c;上次尝试了写在两个.c文件中&#xff0c;结果没有编译通过。 无奈之下&#xff0c;将其中一个.c文件重命名成.h文件&#xff0c;再include当另一个当中。但是&#xff0c;在.h文件中…

未来计算机将具有图像识别 定理证明,[单选] 低温计与高温计所测温度的分界线为()。...

[单选] 低温计与高温计所测温度的分界线为()。更多相关问题【单选题】向一个栈顶指针为 HS 链式栈中插入一个 s 所指结点时,则执行( )。A. HS next s &#xff1b; B. s nextHS next &#xff1b; HS nexts &#xff1b; C.【判断题】每年10月是青海湖观鸟的最好季节。【单…

[nodejs]国内npm安装nodejs modules失败的几个解决方案

使用npm安装node模块时经常有卡住安装失败的情况&#xff0c;如图所示。原因在于npm服务器在美国&#xff0c;还有就是某强大的防火墙作用。这样的问题导致很多新手放弃使用node&#xff0c;几乎每天都有新手再问这个问题。现在分享一下解决这个问题的解决方案 1.可以通过一劳永…

linux2.6内核Makefile详解

熟悉内核的Makefile对开发设备驱动、理解内核代码结构都是非常重要的linux2.6内核Makefile的许多特性和2.4内核差别很大&#xff0c;在内核目录的documention/kbuild/makefiles.txt中有详细的说明。给大家一个中文版的翻译 目录 1 概述 2 用户与作用 3 Kbuild文件--- 3.1 目标定…

phpstudy编写html,phpStudy简介

PHP(“PHP: Hypertext Preprocessor”&#xff0c;超文本预处理器的字母缩写)是一种被普遍应用的开放源代码的多用途脚本语言&#xff0c;它可嵌入到 HTML中&#xff0c;尤为适合 web 开发。下面是用 PHP 编写了一个 HTML 脚本&#xff0c;其中嵌入了一些代码来作一些事情(例如…

mysql command line client闪一下消失

在启动MySQL后&#xff0c;通过软件可以操作数据库。在windows程序下找到MySQL-MySQL Server 5.6-mysql command line client&#xff0c;本来可以出现一个界面让用户输入密码。 但是在按上面的操作安装后&#xff0c;打开mysql command line client却发现它闪一下后消失。 解决…

java 合并单元格 把数据合并没了_合并单元格

合并单元格同样也是在表格中进行&#xff0c;关于合并单元格我们需要了解的两个概念&#xff1a;colspan 合并列&#xff0c;rowspan 合并行。colspan(跨列)合并列&#xff1a;colspan属性常用在 td 中&#xff0c;用来指定单元格横向跨越的列数。比如&#xff1a;将下面表格的…

一步步学习微软InfoPath2010和SP2010--第九章节--使用SharePoint用户配置文件Web service(2)--在事件注册表单上创建表单加载规则...

下面练习中&#xff0c;你将添加表单加载规则&#xff0c;将四个文本框域和图片控件与用户配置文件web service连接。当使用用户配置文件web service时&#xff0c;你需要将控件和来自web service合适的域绑定。这个过程需要用户配置文件架构的导航和筛选&#xff0c;来抽取合适…

.config 和 kconfig以及 makefile的关系

当我们编写完一个驱动后&#xff0c;我们要把它以模块形式编译或者直接编译进内核时&#xff0c;需要修改相关文件&#xff0c;其中最重要的便是kconfig ,makefile。主要是分析一下三者之间的关系&#xff0c;然后就其语法简要的谈一下。当我们在内核源码目录下执行make &#…

光耦驱动单向可控硅_华越国际一文带路:可控硅触发设计技巧

序可控硅(Silicon Controlled Rectifier,简称SCR)&#xff0c;是可控硅整流元件的简称&#xff0c;是一种具有三个PN结的四层结构的大功率半导体器件&#xff0c;亦称为晶闸管。具有体积小、结构相对简单、功能强等特点&#xff0c;是比较常用的半导体器件之一。家用电器中的调…

华为计算机网络基础知识,华为HCNE专题一:网络基础知识

华为HCNE专题一&#xff1a;网络基础知识对应章节&#xff1a;第一章重点&#xff1a;理解网络结构&#xff0c;掌握OSI参考模型的基本结构难点&#xff1a;OSI各层次名字及其概念的理解亮点/应用/重要性&#xff1a;网络入门的基础&#xff0c;重中之重。主要内容&#xff1a;…

Servlet JSP系列文章总结

前言 谢谢大家的捧场&#xff0c;真心感谢我的阅读者。 all 下一期&#xff0c;重点在 数据结构和算法 &#xff0c;希望给大家带来开心。已经出了几篇&#xff0c;大家爱读就是我的开心。 Servlet & JSP系列总结 博客&#xff0c;呵呵&#xff01;很开心&#xff0c;认识…

一般通话记录能保存多少条_鸡蛋放冰箱,能保存多少天?正确保存方法是什么?...

鸡蛋是我们经常吃的食物&#xff0c;很多家庭都会经常的买鸡蛋吃。相信大家买回来鸡蛋之后&#xff0c;普遍都是把鸡蛋放入冰箱里&#xff0c;什么时候想吃什么时候拿一个。但是大家可能不知道的是&#xff0c;鸡蛋就算是放在冰箱里保存&#xff0c;也是有保质期的&#xff0c;…