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.
2.Identity
题目:We want to insert record into table a
create table a (a int identity(1,1))
Which statement will work?
- insert into a default values
- insert into a values (default)
- insert into a values (1)
- 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.
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:
- 1st 0 rows 2nd 0 rows
- 1st 1 row, 2nd 0 rows
- 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.
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
- Enable AWE option from SQL Server configuration
- Add /3GB switch in boot.ini
- 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.
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:
- Errors can be corrected by the user
- Insufficient Resources
- Informational messages
- Nonfatal Internal Error Detected
- 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:
- SQL Server 2008
- SQL Server 2005
- 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:
- Results: 1 2 3 4 5 No messages
- Results: 1 2 3 No Messages
- Results: 1 2 4 5 Message: this is an exception
- 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:
- REMOVE EXECUTE permission statement
- REVOKE EXECUTE permission statement
- DENY EXECUTE permission statement
- 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.
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.
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基础问题整理的更多相关文章
- 转,异常好的sql 基础知识整理
转载自:http://blog.csdn.net/u011001084/article/details/51318434 最近从图书馆借了本介绍SQL的书,打算复习一下基本语法,记录一下笔记,整理一下 ...
- SQL基础知识整理
建议:关键字和函数名全部大写:数据库名称.表名称.字段名称全部小写:分号结尾.但是大小写语句不区分,本人讨厌大写(英语菜,不能一眼看出内容),所以全部小写.[]看情况可有可无,{}花括号的内容必须要有 ...
- SQL 基础语句整理
SQL教程 SELECT 语句 SELECT * FROM 表名称 DISTINCT 语句 SELECT DISTINCT 列名称 FROM 表名称 SELECT LastName,FirstName ...
- MySQL基础整理(一)之SQL基础(未完成)
大家好,我是浅墨竹染,以下是MySQL基础整理(一)之SQL基础 1.SQL简介 SQL(Structure Query Language)是一种结构化查询语言,是使用关系模型的数据库应用语言. 2. ...
- sql注入知识点整理(基础版)
sql注入知识点整理(基础版) 基本步骤 判断是否报错 判断闭合符号 判断注入类型 构建payload 手工注入或者编写脚本 基本注入类型 报错型注入 floor公式(结果多出一个1):and (se ...
- 数据库整理(三) SQL基础
数据库整理(三) SQL基础 SQL语言的特点 集数据定义语言(DDL),数据操纵语言(DML),数据控制语言(DCL)功能于一体. 可以独立完成数据库生命周期中的全部活动: ●定义和修改.删除关 ...
- Kali Linux渗透基础知识整理(二)漏洞扫描
Kali Linux渗透基础知识整理系列文章回顾 漏洞扫描 网络流量 Nmap Hping3 Nessus whatweb DirBuster joomscan WPScan 网络流量 网络流量就是网 ...
- 第一章 SQL基础
第一部分:SQL基础1. 为什么学习SQL自人类社会形成之日起,社会的运转就在不断地产生和使用各种信息(文献.档案.资料.数据等):在如今所谓的信息时代,由于计算机和互联网的作用,信息的产生和使用达到 ...
- 【OGG】OGG基础知识整理
[OGG]OGG基础知识整理 一.GoldenGate介绍 GoldenGate软件是一种基于日志的结构化数据复制软件.GoldenGate 能够实现大量交易数据的实时捕捉.变换和投递,实现源数据库与 ...
随机推荐
- 【CodeForces】Gargari and Bishops
依据贪心能够知道,放置的教主必须不能相互攻击到(也就是不在一条对角线上)才干够使得结果最大化. 依据观察能够得到教主相互不攻击的条件是他的坐标和互为奇偶(x + y) 之后直接暴力,处理每一个坐标对角 ...
- ACdream 1127 Base Station (离线查询+树状数组)
题目链接: http://acdream.info/problem?pid=1127 题目: 移动通信系统中,通信网的建立主要通过基站来完成. 基站可以分为主基站和子基站.子基站和各个移动用户进行连接 ...
- iOS_05_变量的内存分析、Scanf函数
一.变量的内存分析 1.字节和地址 * 为了更好地理解变量在内存中得存储细节,先来认识一下内存中得”字节“和”地址“. * 内存以字节为单位 * 不同类型占用的字节是不一样的,数据越大,所需的字节数九 ...
- amazeui页面分析4
amazeui页面分析4 一.总结 1.直接照着作者的设计思路用:例如 pet_hd_con_time pet_hd_con_map ,这是time 和 map,那我别的说不定也可以直接用,比如aut ...
- 搭建聊天机器人Bot Framework
Bot Framework 搭建聊天机器人 这周我来跟大家分享的是在Microsoft Build 2016上发布的微软聊天机器人的框架. 现如今,各种人工智能充斥在我们的生活里.最典型的人工智能产品 ...
- 每日技术总结:setInterval,setTimeout,文本溢出,小程序,wepy
前言: 项目背景:vue,电商,商品详情页 1.倒计时,倒计到0秒时停止 data () { return { n: 10 } }, created () { let int = setInterva ...
- Microsoft iSCSI Software Target 快照管理
Microsoft iSCSI Software Target 支持快照管理,可以对设备进行手工创建快照.快照任务计划.快照回滚等操作. 首先配置iscsi 目标及设备映射关系,并在客户端通过发起程序 ...
- AE要素选择(点选和拉框选择)
原文 AE要素选择(点选和拉框选择) 选择一个要素或者一个要素集(FeatureSelection)的方法很多,如IMap::SelectByShape.ILayer::search.IFeature ...
- HDU 1394 Minimum Inversion Number(线段树求最小逆序数对)
HDU 1394 Minimum Inversion Number(线段树求最小逆序数对) ACM 题目地址:HDU 1394 Minimum Inversion Number 题意: 给一个序列由 ...
- SQLITE3 使用总结(直接使用C函数)
转载网址:http://blog.chinaunix.net/uid-8447633-id-3321394.html 前序: Sqlite3 的确很好用.小巧.速度快.但是因为非微软的产品,帮助文档总 ...