sql基础教程亚马逊_针对Amazon,Apple,Google的常见SQL面试问题

sql基础教程亚马逊

SQL is used in a wide variety of programming jobs. It's important to be familiar with SQL if you are going to be interviewing soon for a software position. This is especially true if you are going to interview at a top tech company such as Amazon, Apple, or Google.

SQL被广泛用于各种编程工作中。 如果您即将面试软件职位,那么熟悉SQL非常重要。 如果您要去亚马逊,苹果或谷歌这样的顶级科技公司面试,尤其如此。

This guide will cover basic SQL syntax as a refresher and then list some common SQL interview questions. The answers for all questions are given and you can use this information to study for your programming interview.

本指南将复习基本SQL语法,然后列出一些常见SQL面试问题。 给出了所有问题的答案,您可以使用此信息来学习编程面试。

基本SQL语法示例 (Basic SQL Syntax Example)

SQL is an international standard (ISO), but you will find some differences between implementations. This guide uses MySQL as an example because it's the most popular implementation of SQL.

SQL是国际标准(ISO),但是您会发现实现之间存在一些差异。 本指南以MySQL为例,因为它是最流行SQL实现。

如何使用特定的数据库 (How to use a specific database)

Here is the SQL command used to select the database containing the tables for your SQL statements:

这是用于选择包含SQL语句表的数据库SQL命令:

USE fcc_sql_guides_database;

SELECT和FROM子句 (SELECT and FROM clauses)

Use SELECT to determine which columns of the data you want to show in the results. There are also options you can use to show data that is not a table column.

使用SELECT确定要在结果中显示数据的哪些列。 还有一些选项可用于显示不是表列的数据。

The following example shows two columns selected from the “student” table, and two calculated columns. The first of the calculated columns is a meaningless number, and the other is the system date.

以下示例显示了从“学生”表中选择的两列,以及两个计算出的列。 计算的第一列是无意义的数字,另一个是系统日期。

SELECT studentID, FullName, 3+2 AS five, now() AS currentDate FROM student;

WHERE子句 (WHERE clause)

The WHERE clause specifies a condition while getting data. The WHERE clause is used to limit the number of rows returned. It's often used in a SELECT statement but can also be used in other statements such as UPDATE and DELETE.

WHERE子句指定获取数据时的条件。 WHERE子句用于限制返回的行数。 它通常用在SELECT语句中,但也可以用在其他语句中,例如UPDATE和DELETE。

Here is the basic syntax of the WHERE clause:

这是WHERE子句的基本语法:

SELECT column1, column2
FROM table_name
WHERE [condition]

The condition in a WHERE clause can include logical operators like >, <, =, LIKE, NOT, AND, OR.

WHERE子句中的条件可以包括>,<,=,LIKE,NOT,AND或OR之类的逻辑运算符。

Here is an example of a SQL statment using the WHERE clause. It specifies that if any of the students have certain SAT scores (1000, 1400), they will not be presented:

这是使用WHERE子句SQL语句的示例。 它指定如果任何学生的SAT分数达到一定(1000、1400),则不会显示以下内容:

SELECT studentID, FullName, sat_score, recordUpdated
FROM student
WHERE (studentID BETWEEN 1 AND 5OR studentID = 8OR FullName LIKE '%Maximo%')AND sat_score NOT IN (1000, 1400);

订单依据(ASC,DESC) (ORDER BY (ASC, DESC))

ORDER BY gives us a way to sort the result set by one or more of the items in the SELECT section.

ORDER BY提供了一种方法,可以按SELECT部分​​中的一个或多个项目对结果集进行排序。

Here is the same list as above, but sorted by the student's Full Name. The default sort order is ascending (ASC), but to sort in the opposite order (descending) you use DESC, as in the example below:

这是与上述相同的列表,但按学生的全名排序。 默认的排序顺序是升序(ASC),但是要使用相反的顺序(降序),请使用DESC,如下例所示:

SELECT studentID, FullName, sat_score
FROM student
WHERE (studentID BETWEEN 1 AND 5OR studentID = 8OR FullName LIKE '%Maximo%')AND sat_score NOT IN (1000, 1400)
ORDER BY FullName DESC;

分组并拥有 (GROUP BY and HAVING)

GROUP BY gives us a way to combine rows and aggregate data. The HAVING clause is like the above WHERE clause, except that it acts on the grouped data.

GROUP BY为我们提供了一种合并行和汇总数据的方法。 HAVING子句类似于上面的WHERE子句,不同之处在于它作用于分组的数据。

The SQL statement below answers the question: “Which candidates received the largest number of contributions (ordered by count (*)) in 2016, but only those who had more than 80 contributions?”

下面SQL语句回答了以下问题:“ 2016年,哪些候选人获得的捐款数量最多(按计数(*)排序),但只有那些捐款超过80的候选人?”

Ordering this data set in a descending (DESC) order places the candidates with the largest number of contributions at the top of the list.

按降序(DESC)排序此数据集,将贡献最大的候选者放在列表的顶部。

SELECT Candidate, Election_year, SUM(Total_$), COUNT(*)
FROM combined_party_data
WHERE Election_year = 2016
GROUP BY Candidate, Election_year
HAVING count(*) > 80
ORDER BY count(*) DESC;

常见SQL面试问题 (Common SQL Interview Questions)

什么是SQL中的内部联接? (What is an inner join in SQL?)

This is the default type of join if no join is specified. It returns all rows in which there is at least one match in both tables.

如果未指定连接,则这是默认的连接类型。 它返回两个表中至少有一个匹配项的所有行。

SELECT * FROM A x JOIN B y ON y.aId = x.Id

什么是SQL中的左联接? (What is a left join in SQL?)

A left join returns all rows from the left table, and the matched rows from the right table. Rows in the left table will be returned even if there was no match in the right table. The rows from the left table with no match in the right table will have null for right table values.

左联接返回左表中的所有行,并返回右表中的匹配行。 即使右表中没有匹配项,也将返回左表中的行。 左表中没有匹配项的行在右表中将为null对于右表值。

SELECT * FROM A x LEFT JOIN B y ON y.aId = x.Id

什么是SQL中的正确联接? (What is a right join in SQL?)

A right join returns all rows from the right table, and the matched rows from the left table. Opposite of a left join, this will return all rows from the right table even where there is no match in the left table. Rows in the right table that have no match in the left table will have null values for left table columns.

右联接返回右表中的所有行,以及左表中的匹配行。 与左联接相反,这将返回右表中的所有行,即使左表中没有匹配项也是如此。 右表中与左表不匹配的行的左表列将具有null值。

SELECT * FROM A x RIGHT JOIN B y ON y.aId = x.Id

什么是SQL中的完全联接或完全外部联接? (What is a full join or full outer join in SQL?)

A full outer join and a full join are the same thing. The full outer join or full join returns all rows from both tables, matching up the rows wherever a match can be made and placing NULLs in the places where no matching row exists.

完全外部联接和完全联接是同一回事。 完全外部联接或完全联接返回两个表中的所有行,在可以进行匹配的地方匹配这些行,并将NULL放置在不存在匹配行的位置。

SELECT Customers.CustomerName, Orders.OrderID
FROM Customers
FULL OUTER JOIN Orders
ON Customers.CustomerID=Orders.CustomerID
ORDER BY Customers.CustomerName

以下命令的结果是什么? (What is the result of the following command?)

DROP VIEW view_name

This will result in an error because you can’t perform a DML operation on a view. A DML operation is any operation that manipulates the data such as DROP, INSERT, UPDATE, and DELETE.

这将导致错误,因为您无法在视图上执行DML操作。 DML操作是任何操作数据的操作,例如DROP,INSERT,UPDATE和DELETE。

使用ALTER命令后可以执行回滚吗? (Can we perform a rollback after using ALTER command?)

No, because ALTER is a DDL command and Oracle server performs an automatic COMMIT when the DDL statements are executed. DDL statements define data structures such as CREATE table and ALTER table.

不可以,因为ALTER是DDL命令,并且在执行DDL语句时Oracle服务器执行自动COMMIT。 DDL语句定义数据结构,例如CREATE tableALTER table

在列级别执行规则的唯一约束是什么? (Which is the only constraint that enforces rules at column level?)

NOT NULL is the only constraint that works at the column level.

NOT NULL是在列级别上起作用的唯一约束。

SQL中的伪列是什么? 举一些例子? (What are the pseudocolumns in SQL? Give some examples?)

A pseudocolumn behaves like a column, but is not actually stored in the table because it is all generated values. The values of a pseudocolumn can be selected but they cannot be inserted, updated, or deleted.

伪列的行为类似于列,但实际上并没有存储在表中,因为它都是生成的值。 可以选择伪列的值,但是不能插入,更新或删除它们。

ROWNUM, ROWID, USER, CURRVAL, NEXTVAL etc.

创建一个密码为“ kmd26pt”的用户“ my723acct”。 使用PO8提供的“ user_data”和临时数据表空间,并向该用户提供“ user_data”中10M的存储空间和“ temporary_data”中5M的存储空间。 (Create a user "my723acct" with password "kmd26pt". Use the "user_data" and temporary data tablespaces provided by PO8 and provide to this user 10M of storage space in "user_data" and 5M of storage space in "temporary_data".)

CREATE USER my723acct IDENTIFIED BY kmd26pt
DEFAULT TABLESPACE user_data
TEMPORARY TABLESPACE temporary_data
QUOTA 10M on user_data QUOTA 5M on temporary_data

创建角色 role_tables_and_views (Create the role role_tables_and_views.)

CREATE ROLE role_tables_and_views

向上一个问题的角色授予连接数据库的特权以及创建表和视图的特权。 (Grant to the role of the previous question the privileges to connect to the database and the privileges to create tables and views.)

The privilege to connect to the database is CREATE SESSION The privilege to create table is CREATE TABLE The privilege to create view is CREATE VIEW

连接数据库的特权是CREATE SESSION创建表的特权是CREATE TABLE创建视图的特权是CREATE VIEW

GRANT CREATE SESSION, CREATE TABLE, CREATE VIEW TO role_tables_and_views

将问题的先前角色授予用户annyrita (Grant the previous role in the question to the users anny and rita.)

GRANT role_tables_and_views TO anny, rita

编写命令以将用户rita的密码从“ abcd”更改为“ dfgh” (Write a command to change the password of the user rita from "abcd" to "dfgh")

ALTER USER rita IDENTIFIED BY dfgh

用户ritaannyscott创建的INVENTORY表上没有SELECT特权。 编写命令以允许scott向用户授予这些表的SELECT特权。 (The users rita and anny do not have SELECT privileges on the table INVENTORY that was created by scott. Write a command to allow scott to grant the users SELECT privileges on theses  tables.)

GRANT select ON inventory TO rita, anny

用户 rita 已转移,不再需要通过角色授予她的特权 role_tables_and_views 。 编写命令以将其从先前授予的特权中删除。 她仍然应该能够连接到数据库。 (User rita has been transferred and no longer needs the privilege that was granted to her through the role role_tables_and_views. Write a command to remove her from her previously given privileges. She should still be able to connect to the database.)

REVOKE select ON scott.inventory FROM rita
REVOKE create table, create view FROM rita

已转移的用户rita现在移至另一家公司。 由于她创建的对象不再使用,因此编写命令以删除该用户及其所有对象。 (The user rita who was transferred is now moving to another company. Since the objects she created are no longer used, write a command to remove this user and all her objects.)

The CASCADE option is necessary to remove all the objects of the user in the database.

CASCADE选项对于删除数据库中用户的所有对象是必需的。

DROP USER rita CASCADE

编写SQL查询以从“雇员”表中找到第n个最高的“工资”。 (Write an SQL query to find the nth highest "Salary" from the "Employee" table.)

SELECT TOP 1 SalaryFROM (SELECT DISTINCT TOP N SalaryFROM EmployeeORDER BY Salary DESC)ORDER BY Salary ASC

结论 (Conclusion)

If you think you can answer all these questions, you may be ready for your interview. Good luck!

如果您认为自己可以回答所有这些问题,则可能已准备好接受面试。 祝好运!

翻译自: https://www.freecodecamp.org/news/common-sql-interview-questions/

sql基础教程亚马逊

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

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

相关文章

leetcode 1720. 解码异或后的数组(位运算)

未知 整数数组 arr 由 n 个非负整数组成。 经编码后变为长度为 n - 1 的另一个整数数组 encoded &#xff0c;其中 encoded[i] arr[i] XOR arr[i 1] 。例如&#xff0c;arr [1,0,2,1] 经编码后得到 encoded [1,2,3] 。 给你编码后的数组 encoded 和原数组 arr 的第一个元…

adobe 书签怎么设置_让我们设置一些规则…没有Adobe Analytics处理规则

adobe 书签怎么设置Originally published at Analyst Admin.最初发布于Analyst Admin 。 In my experience working with Adobe Analytics, I’ve found that Processing Rules help in some cases, but oftentimes they create more work. I try to avoid using Processing R…

详解linux下安装python3环境

1、下载python3.5源码包首先去python官网下载python3的源码包&#xff0c;网址&#xff1a;https://www.python.org/ 进去之后点击导航栏的Downloads&#xff0c;也可以鼠标放到Downloads上弹出菜单选择Source code&#xff0c;表示源码包&#xff0c;这里选择最新版本3.5.2&am…

详解spl_autoload_register()函数

http://blog.csdn.net/panpan639944806/article/details/23192267 转载于:https://www.cnblogs.com/maidongdong/p/7647163.html

上海区块链会议演讲ppt_所以您想参加会议演讲吗? 这是我的建议。

上海区块链会议演讲pptYou’ve attended a few conferences, watched a lot of presentations, and decided it’s time to give a talk of your own! As someone who has both given talks at conferences, and sat on the proposal review board for others, I’m here to te…

重学TCP协议(8) TCP的11种状态

TCP的11种状态 为了逻辑更加清晰&#xff0c;假设主动打开连接和关闭连接皆为客户端&#xff0c;被动打开连接和关闭连接皆为服务端 客户端独有的&#xff1a;&#xff08;1&#xff09;SYN_SENT &#xff08;2&#xff09;FIN_WAIT1 &#xff08;3&#xff09;FIN_WAIT2 &…

肯尼亚第三方支付_肯尼亚的COVID-19病例正在Swift增加,我们不知道为什么。

肯尼亚第三方支付COVID-19 cases in Kenya are accelerating rapidly. New cases have increased 300% month-over-month since April of this year while global and regional media have reported on the economic toll of stringent lock-down measures and heavy-handed go…

JVM命令

1、jps 查看所有虚拟机进程 -v 虚拟机启动时JVM参数 -l 执行主类全名 2、jstat 显示本地或远程类装载、内存、垃圾回收、JIT编译等运行数据&#xff08;性能问题定位工具首选&#xff09; 格式&#xff1a;jstat [-option] vmid ms count &#xff08;示例&a…

Java 集合 List Arrays.asList

2019独角兽企业重金招聘Python工程师标准>>> 参考链接&#xff1a;阿里巴巴Java开发手册终极版v1.3.0 【强制】使用工具类 Arrays.asList()把数组转换成集合时&#xff0c;不能使用其修改集合相关的方 法&#xff0c;它的 add/remove/clear 方法会抛出 UnsupportedO…

重学TCP协议(9) 半连接队列、全连接队列

1. 半连接队列、全连接队列基本概念 三次握手中&#xff0c;在第一步server收到client的syn后&#xff0c;把相关信息放到半连接队列中&#xff0c;同时回复synack给client&#xff08;第二步&#xff09;&#xff0c;同时开启一个定时器&#xff0c;如果超时还未收到 ACK 会进…

分类预测回归预测_我们应该如何汇总分类预测?

分类预测回归预测If you are reading this, then you probably tried to predict who will survive the Titanic shipwreck. This Kaggle competition is a canonical example of machine learning, and a right of passage for any aspiring data scientist. What if instead …

【CZY选讲·Yjq的棺材】

题目描述 Yjq想要将一个长为宽为的矩形棺材&#xff08;棺材表面绝对光滑&#xff0c;所以棺材可以任意的滑动&#xff09;拖过一个L型墓道。 如图所示&#xff0c;L型墓道两个走廊的宽度分别是和&#xff0c;呈90&#xff0c;并且走廊的长度远大于。 现在Hja想知道对于给…

“机器换人”之潮涌向珠三角,蓝领工人将何去何从

企业表示很无奈&#xff0c;由于生产需要&#xff0c;并非刻意换人。 随着传统产业向更加现代化、自动化的新产业转型&#xff0c;“机器换人”似乎是历史上不可逆转的潮流。 据报道&#xff0c;珠三角经济圈所在的广东省要从传统的制造大省向制造强省转变&#xff0c;企业转型…

slack通知本地服务器_通过构建自己的Slack App学习无服务器

slack通知本地服务器Serverless architecture is the industrys latest buzzword and many of the largest tech companies have begun to embrace it. 无服务器架构是业界最新的流行语&#xff0c;许多大型科技公司已开始采用它。 In this article, well learn what it is an…

深入理解InnoDB(6)—独立表空间

InnoDB的表空间 表空间可以看做是InnoDB存储引擎逻辑结构的最高层 &#xff0c;所有的数据都是存放在表空间中。 1. Extent 对于16KB的页来说&#xff0c;连续的64个页就是一个区&#xff0c;也就是说一个区默认占用1MB空间大小。 每256个区被划分成一组,第一组的前3个页面是…

神经网络推理_分析神经网络推理性能的新工具

神经网络推理Measuring the inference time of a trained deep neural model on different hardware devices is a critical task when making deployment decisions. Should you deploy your inference on 8 Nvidia V100s, on 12 P100s, or perhaps you can use 64 CPU cores?…

Eclipse断点调试

1.1 Eclipse断点调试概述Eclipse的断点调试可以查看程序的执行流程和解决程序中的bug1.2 Eclipse断点调试常用操作:A:什么是断点&#xff1a;就是一个标记&#xff0c;从哪里开始。B:如何设置断点&#xff1a;你想看哪里的程序&#xff0c;你就在那个有效程序的左边双击即可。C…

react部署在node_如何在没有命令行的情况下在3分钟内将React + Node应用程序部署到Heroku

react部署在nodeIn this tutorial we will be doing a basic React Node app deploy to Heroku. 在本教程中&#xff0c;我们将进行基本的React Node应用程序部署到Heroku。 There are a lot of tutorials that do this only using the command line, so to change things u…

深入理解InnoDB(7)—系统表空间

系统表空间 可以看到&#xff0c;系统表空间和独立表空间的前三个页面&#xff08;页号分别为0、1、2&#xff0c;类型分别是FSP_HDR、IBUF_BITMAP、INODE&#xff09;的类型是一致的&#xff0c;只是页号为3&#xff5e;7的页面是系统表空间特有的 页号3 SYS: Insert Buffer …

CodeForces - 869B The Eternal Immortality

题意&#xff1a;已知a,b&#xff0c;求的最后一位。 分析&#xff1a; 1、若b-a>5&#xff0c;则尾数一定为0&#xff0c;因为连续5个数的尾数要么同时包括一个5和一个偶数&#xff0c;要么包括一个0。 2、若b-a<5&#xff0c;直接暴力求即可。 #include<cstdio>…