sql语句语法多表关联_SQL创建表语句-带有示例语法

sql语句语法多表关联

SQL is one of the most reliable and straightforward querying languages around. It provides clear cut syntax that reads easily without abstracting away too much of the functionality's meaning.

SQL是最可靠,最直接的查询语言之一。 它提供了清晰易懂的语法,易于阅读,而无需抽象过多的功能含义。

If you'd like some history on the language as well as some interesting facts, check out the introduction portion of my SQL Update Statement article.  

如果您想了解某种语言的历史以及一些有趣的事实,请查看我的《 SQL更新语句》文章的介绍部分。

In this article, we're going to go through the important parts of creating a table in SQL.  My preferred "flavor" of SQL is SQL Server but the information about creating a table is fairly ubiquitous across all SQL variations.  

在本文中,我们将介绍在SQL中创建表的重要部分。 我最喜欢SQL“风味”是SQL Server,但是有关创建表的信息在所有SQL变体中都非常普遍。

If you've never used SQL or don't know what a table is, fear not! Briefly (and broadly), a table is a database object that holds, or contains, all of the data within that portion of the database. It stores this data in named columns and numbered rows which is not unfamiliar if you've ever used any spreadsheet program. Each row represents a whole database record.

如果您从未使用过SQL或不知道表是什么,请不要担心! 简要地(广义上),表是一个数据库对象,用于保存或包含数据库该部分内的所有数据。 它将这些数据存储在命名列和编号行中,如果您曾经使用过任何电子表格程序,这些都不是不熟悉的。 每行代表一个完整的数据库记录。

If data were in box form then a table would be a section of the warehouse shelving we store those boxes in.

如果数据是盒式的,那么表格将是我们将这些盒存储在其中的仓库货架的一部分。

I'm simplifying the explanation greatly and there is much more to SQL tables but that's outside the scope of this article.  If you're itching for a more in-depth explanation on tables, I encourage you to dive into the Microsoft Database Design documentation.

我正在极大地简化说明,SQL表还有很多其他内容,但这不在本文的讨论范围之内。 如果您想对表进行更深入的说明,建议您深入阅读Microsoft数据库设计文档 。

Before we learn how to create the table, it's important that we learn what types of data these columns and rows can store.

在学习如何创建表之前,重要的是要了解这些列和行可以存储什么类型的数据。

资料类型 (Data Types)

SQL tables can hold text, numbers, a combination of text and numbers, as well as images and links.

SQL表可以保存文本,数字,文本和数字的组合以及图像和链接。

When creating our table, we designate the type of data its rows and columns will hold. Here are the overarching classifications of data:

在创建表时,我们指定其行和列将保存的数据类型。 以下是数据的总体分类:

  • Approximate Numerics

    近似数值
  • Strings

    弦乐
  • Date & Time

    约会时间
  • Unicode Character Strings

    Unicode字符串
  • Exact Numerics

    精确数值
  • Other

    其他

I'll list some of the more commonly used data types below, but if you'd like a more on all data types, I invite you to check out this exhaustive article on each type from Microsoft.

我将在下面列出一些更常用的数据类型,但是如果您想在所有数据类型上都有更多的信息,我邀请您查看Microsoft每种类型的详尽文章 。

Here are the more commonly used types of data from my experience, in no particular order:

根据我的经验,以下是一些最常用的数据类型,不分先后顺序:

  • char(size) - fixed length string that can contain letters, numbers, special characters

    char(size)- 固定长度的字符串,可以包含字母,数字和特殊字符

  • varchar(size) - variable length string that can contain letters, numbers, & special characters

    varchar(size)- 可变长度的字符串,可以包含字母,数字和特殊字符

  • boolean - Zero (or values that equate to 0) is false, non-zero is true

    布尔值-零(或等于0的值)为false,非零为true
  • int(size optional) - a number up to 10 characters in length, accepts negative & positive numbers

    int( size可选 )-长度最大为10个字符的数字,可接受负数和正数

  • bigint(size optional) - a number up to 19 characters in length, accepts negative & positive numberrs

    bigint( size可选 )-长度最大为19个字符的数字,可接受负号和正号

  • float(size, d) - a number with total number size represented by size and the number of characters after the decimal represented by the d

    float(size,d)-一个数字,其总大小由size表示,而小数点后的字符数由d表示

  • date - date in the format of YYYY-MM-DD

    date-日期,格式为YYYY-MM-DD

  • datetime - date time in the format of YYY-MM-DD hh:mm:ss

    datetime-日期时间,格式为YYY-MM-DD hh:mm:ss

  • time - time in the format of hh:mm:ss

    时间-时间,格式为hh:mm:ss

Alright, now that we know what types of data the rows and columns can contain let's get into the fun parts!

好了,现在我们知道行和列可以包含哪些数据类型,让我们进入有趣的部分!

建立表格 (Creating a Table)

Before we start it's important to note that I'll be providing all of my examples independent of any program.

在开始之前,请务必注意,我将提供与所有程序无关的所有示例。

However, if you'd like to start writing queries and you aren't sure where to start, take a look at SQL Server Management Studio. It's a free, robust program that's widely used and supported in the community.

但是,如果您想开始编写查询并且不确定从哪里开始,请查看SQL Server Management Studio。 这是一个免费,强大的程序,在社区中得到广泛使用和支持。

Alternatively, there are several options including DB Fiddle that allow you to build schemas and write queries right in your browser.  

另外,还有一些选项,包括DB Fiddle ,这些选项使您可以在浏览器中构建模式并编写查询。

Let's start with a simple statement to create a basic table:

让我们从创建基本表的简单语句开始:

CREATE TABLE table_name ( column1_name datatype, column2_name datatype, column3_name datatype, column4_name datatype, column5_name datatype,)CREATE TABLE table_name ( column1_name datatype, column2_name datatype, column3_name datatype, column4_name datatype, column5_name datatype,)

There are other parameters we can add after the datatype to augment the columns:

我们可以在datatype之后添加其他参数以增加列:

  • NOT NULL - passing this parameter will ensure the column cannot hold a NULL value

    NOT NULL传递此参数将确保列不能包含NULL

  • UNIQUE - passing this parameter will prevent the column from holding the same value more than once

    UNIQUE传递此参数将防止该列多次保存相同的值

  • UNIQUE KEY - passing this parameter will designate that column as a unique identifier. It is essentially a combination of the previous two parameters.

    UNIQUE KEY传递此参数将将该列指定为唯一标识符。 它本质上是前两个参数的组合。

Now, we're going to create a table (named doggo_info which must adhere to the identifier standards for databases) to hold information on the residents of Woof Woof Retreat, a fictional doggy daycare I just thought of :)

现在,我们将创建一个表(名为doggo_info,该表必须遵守数据库的标识符标准 ),以保存有关Woof Woof Retreat居民的信息,Woof Woof Retreat是我刚刚想到的虚构的小狗日托:)

CREATE TABLE doggo_info ( ID int UNIQUE KEY, Name varchar(50) NOT NULL, Color varchar(50), Breed varchar(50), Age int, Weight int, Height int, Fav_Food varchar(100), Fav_Toy varchar(100), Dislikes varchar(500), Allergies varchar(500) NOT NULL ) CREATE TABLE doggo_info ( ID int UNIQUE KEY, Name varchar(50) NOT NULL, Color varchar(50), Breed varchar(50), Age int, Weight int, Height int, Fav_Food varchar(100), Fav_Toy varchar(100), Dislikes varchar(500), Allergies varchar(500) NOT NULL )

And here is the brand new table we just created:

这是我们刚刚创建的全新表:

NameColorBreedAgeWeightHeightFav_FoodFav_ToyDislikesAllergies
名称 颜色 品种 年龄 重量 高度 最喜欢的食物 收藏玩具 不喜欢 过敏症

You'll notice that our table is completely empty and this is because we haven't added any data to it yet. Doing so is beyond the scope of this article but I wanted you to be aware of that tidbit.

您会注意到我们的表完全为空,这是因为我们尚未向其添加任何数据。 这样做不在本文的讨论范围之内,但是我希望您意识到这一点。

从现有表创建表 (Create A Table From An Existing Table)

It is also possible to create a new table based off of an existing table.

也可以基于现有表创建新表。

It's pretty easy and doesn't require that much more syntax. We need to select the table and columns to "copy" from:

这非常简单,不需要太多语法。 我们需要从中选择要“复制”的表和列:

CREATE TABLE new_table_name AS SELECT column1, column2, column3, column4 (use * to select all columns to be added to the new_table) FROM current_table_name WHERE conditions_existCREATE TABLE new_table_name AS SELECT column1, column2, column3, column4 (use * to select all columns to be added to the new_table) FROM current_table_name WHERE conditions_exist

So, expediency's sake, I've added some data to our doggo_info table and it now looks like the example below:

因此,为了方便起见,我已经在我们的doggo_info表中添加了一些数据,现在看起来像下面的示例:

NameColorBreedAgeWeightHeightFav_FoodFav_ToyDislikesAllergies
daisyredstandard dachshund1146salmon flavored kibblesqueeky ballbirds flying over the yardcats, baths, cleanliness
chiefblack/tanrottweiler34117literally anythingrope tugstaying off the couchlistening, behaving, not slobbering on everything
sammielight honeygolden retriever94619beef flavored kibbleher bedrambutcious puppiesnone known
名称 颜色 品种 年龄 重量 高度 最喜欢的食物 收藏玩具 不喜欢 过敏症
雏菊 标准腊肠犬 1个 14 6 鲑鱼粗磨 粘球 鸟儿飞过院子 猫,浴室,清洁
首席 黑色/棕褐色 罗威纳犬 3 41 17 几乎任何东西 绳拖船 不在沙发上 聆听,表现,不流连忘返
萨米 淡蜂蜜 金毛寻回犬 9 46 19 牛肉粗磨 她的床 贪婪的小狗 没有人知道

Now we can create another table based off of the data we have in our doggo_info table by running the query below:

现在,我们可以通过运行以下查询,基于doggo_info表中的数据创建另一个表:

CREATE TABLE puppies_only AS SELECT * FROM doggo_info WHERE Age < 4 CREATE TABLE puppies_only AS SELECT * FROM doggo_info WHERE Age < 4

We want to create a new table with all of the columns from the doggo_info table but only where the Age is less than 4. After running this query, our new table will look like this:

我们要创建一个新表,其中包含doggo_info表中的所有列,但仅Age小于4。运行此查询后,新表将如下所示:

NameColorBreedAgeWeightHeightFav_FoodFav_ToyDislikesAllergies
daisyredstandard dachshund1146salmon flavored kibblesqueeky ballbirds flying over the yardcats, baths, cleanliness
chiefblack/tanrottweiler34117literally anythingrope tugstaying off the couchlistening, behaving, not slobbering on everything
名称 颜色 品种 年龄 重量 高度 最喜欢的食物 收藏玩具 不喜欢 过敏症
雏菊 标准腊肠犬 1个 14 6 鲑鱼粗磨 粘球 鸟儿飞过院子 猫,浴室,清洁
首席 黑色/棕褐色 罗威纳犬 3 41 17 几乎任何东西 绳拖船 不在沙发上 倾听,表现,不流连忘返

I hope you can see just how powerful this statement can be.  With a few lines in our query we have essentially copied data from one table into another but only the rows that we wanted.  

希望您能看到此语句的功能。 在查询中只有几行,我们基本上已将数据从一个表复制到另一个表中,但仅复制了所需的行。

This is not only a handy tool to have in your developer tool belt – it'll save you untold amounts of time when you need to move data around tables.

这不仅是开发人员工具带中的便捷工具,而且还可以在需要在表中移动数据时为您节省大量时间。

结语 (Wrapping Up)

Now that you know how to create (or copy) a table in SQL no matter what situation you're presented with, you can start filling the columns and rows with data to store!

既然您知道了如何在SQL中创建(或复制)表,无论遇到什么情况,都可以开始用要存储的数据填充列和行!

The CREATE TABLE statement is extremely useful and powerful. You're ready to start putting it to good use.

CREATE TABLE语句非常有用且功能强大。 您已经准备好开始充分利用它。

If you found this article helpful check out my blog where I frequently post articles about web development, life, and learning.

如果您觉得这篇文章对您有帮助,请访问我的博客 ,我经常在其中发布有关Web开发,生活和学习的文章。

While you're there why not sign up for my newsletter? You can do that at the top right of the main blog page. I like to send out interesting articles (mine and others), resources, and tools for  developers every now and then.

当您在那里时,为什么不注册我的时事通讯? 您可以在博客主页面的右上角进行操作。 我喜欢不时为开发人员发送有趣的文章(我的和其他文章),资源和工具。

If you have questions about this article or just in general let me know – come say hi on Twitter or any of my other social media accounts which you can find below the  newsletter sign up on the main page of my blog or on my profile here at fCC :)

如果您对本文有疑问,或者只是一般而言,请告诉我–在Twitter或我的任何其他社交媒体帐户上打个招呼,您可以在新闻快讯下方找到该邮件,并在我的博客主页或此处的个人资料上进行注册: fCC :)

Have an awesome day! Happy learning and happy coding, friend!

祝你有美好的一天! 祝您学习愉快,编码愉快,朋友!

翻译自: https://www.freecodecamp.org/news/sql-create-table-statement-with-example-syntax/

sql语句语法多表关联

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

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

相关文章

分布式改造剧集三:Ehcache分布式改造

第三集&#xff1a;分布式Ehcache缓存改造 前言 ​ 好久没有写博客了&#xff0c;大有半途而废的趋势。忙不是借口&#xff0c;这个好习惯还是要继续坚持。前面我承诺的第一期的DIY分布式&#xff0c;是时候上终篇了---DIY分布式缓存。 探索之路 ​ 在前面的文章中&#xff0c;…

85. 最大矩形

85. 最大矩形 给定一个仅包含 0 和 1 、大小为 rows x cols 的二维二进制矩阵&#xff0c;找出只包含 1 的最大矩形&#xff0c;并返回其面积。 示例 1&#xff1a; 输入&#xff1a;matrix [[“1”,“0”,“1”,“0”,“0”],[“1”,“0”,“1”,“1”,“1”],[“1”,“1”…

TP单字母函数

A方法 A方法用于在内部实例化控制器 调用格式&#xff1a;A(‘[项目://][分组/]模块’,’控制器层名称’) 最简单的用法&#xff1a; $User A(User); 表示实例化当前项目的UserAction控制器&#xff08;这个控制器对应的文件位于Lib/Action/UserAction.class.php&#xff09;…

Angular问题03 @angular/material版本问题

1 问题描述 应用使用 angular4在使用angular/material时&#xff0c;若果在导入模块时使用mat开头&#xff0c;就会报错。 2 问题原因 angular/material版本出现问题&#xff0c;angular/material 从版本5开始就必须要angular5的核心依赖&#xff1b;想要在angular5之前版本中的…

onclick判断组件调用_从子组件Onclick更新状态

onclick判断组件调用How to update the state of a parent component from a child component is one of the most commonly asked React questions.如何从子组件更新父组件的状态是最常见的React问题之一。 Imagine youre trying to write a simple recipe box application, …

Python 列表List的定义及操作

# 列表概念&#xff1a;有序的可变的元素集合# 定义 # 直接定义 nums [1,2,3,4,5]# 通过range函数构造&#xff0c;python2 和python3 版本之间的差异&#xff1b; # python3 用的时候才会去构造 nums range(1,101)# 列表嵌套 # 注意和C语言中数组的区别,是否可…

递归分解因数

题目总时间限制: 1000ms 内存限制: 65536kB描述给出一个正整数a&#xff0c;要求分解成若干个正整数的乘积&#xff0c;即a a1 * a2 * a3 * ... * an&#xff0c;并且1 < a1 < a2 < a3 < ... < an&#xff0c;问这样的分解的种数有多少。注意到a a也是一种分解…

剑指 Offer 51. 数组中的逆序对

剑指 Offer 51. 数组中的逆序对 在数组中的两个数字&#xff0c;如果前面一个数字大于后面的数字&#xff0c;则这两个数字组成一个逆序对。输入一个数组&#xff0c;求出这个数组中的逆序对的总数。 示例 1: 输入: [7,5,6,4] 输出: 5 限制&#xff1a; 0 < 数组长度 &…

react 图像识别_无法在React中基于URL查找图像

react 图像识别If youre new to React and are having trouble accessing images stored locally, youre not alone.如果您不熟悉React&#xff0c;并且无法访问本地存储的图像&#xff0c;那么您并不孤单。 Imagine you have your images stored in a directory next to a co…

html单行元素居中显示,多行元素居左显示

有很多的业务需要元素或者文字如果单行&#xff0c;居中显示&#xff0c;如果数据增多&#xff0c;居中显示代码&#xff08;直接复制到编辑器可用&#xff09;&#xff1a;<!DOCTYPE html> <html lang"en"> <head> <meta charset"UTF-8&q…

ML.NET 0.2版增加了集群和新示例

在今年的Build大会上&#xff0c;微软首次发布了ML.NET。ML.NET是开源的、跨平台的以及运行在.NET上的机器学习框架。微软的Ankit Asthana宣布该项目已经完成了第二版的开发。第二版增加了几个新功能&#xff0c;包括名为集群的新机器学习任务&#xff0c;交叉验证和训练-测试&…

如何变得井井有条-来之不易的秘诀来组织您的生活

Because of the changes brought about by COVID-19, many people have had to find healthy and productive ways of working remotely. 由于COVID-19带来的变化&#xff0c;许多人不得不寻找健康有效的远程工作方式。 Some have been sent home and can continue doing thei…

被未知进程占用端口的解决办法

echo off echo 这是用来结束一个未知进程占用端口的批处理可执行文件ipconfig /allnetstat -anoecho 请查看以上信息&#xff0c;输入被占用的端口号:set /p port请输入port:tasklist|findstr %port%echo 请结合上述程序进行输入&#xff0c;请**谨慎输入**set /p program请输入…

怎样在减少数据中心成本的同时不牺牲性能?

2019独角兽企业重金招聘Python工程师标准>>> 导读虽然组织对数据中心提出了更高的要求&#xff0c;但IT管理人员确实有办法在严格的预算内展开工作。如今&#xff0c;组织认为即使性能预期不断提高&#xff0c;其数据中心预算也在缩减。尽管2018年IT支出总体预计增长…

赛普拉斯 12864_如何使用赛普拉斯自动化辅助功能测试

赛普拉斯 12864In my previous post, I covered how to add screenshot testing in Cypress to ensure components dont unintentionally change over time. 在上一篇文章中 &#xff0c;我介绍了如何在赛普拉斯中添加屏幕截图测试&#xff0c;以确保组件不会随时间变化。 Now…

anaconda在win下和在mac下的安装区别

1. 在win下安装anaconda后会提示你选择环境变量&#xff0c;但是建议使用默认。 于是CMD进入终端和使用navigator进入终端不一样&#xff0c;前者会提示无此命令&#xff0c;只能通过navigator进入终端 即使在系统变量变量Path里添加了路径&#xff0c;使用CMD还是不能使用pyth…

fcn从头开始_如何使用Go从头开始构建区块链

fcn从头开始介绍 (Introduction) With Web 3.0 and blockchain becoming more mainstream every day, do you know what blockchain is? Do you know its technical advantages and use-cases?随着Web 3.0和区块链每天变得越来越主流&#xff0c;您知道什么是区块链吗&#x…

java实现无序数组结构

一、数组的2种定义方式 数据类型 [] 数组名称 new 数据类型[数组长度]; 这里 [] 可以放在数组名称的前面&#xff0c;也可以放在数组名称的后面&#xff0c;一般放在名称的前面 数据类型 [] 数组名称 {数组元素1&#xff0c;数组元素2&#xff0c;......} 这种方式声明数组的…

Android App 的主角:Activity

Android App 程序主要由4种类型组成&#xff1a; 1.Activity&#xff08;活动&#xff09;&#xff1a;主要负责屏幕显示画面&#xff0c;并处理与用户的互动。每个Android App至少都会有一个Activity&#xff0c;在程序一启动时显示主画面供用户操作。 2.Service&#xff08;后…

通过构建Paint App学习React Hooks

According to people in the know, React Hooks are hot, hot, hot. In this article, we follow Christian Jensens 14-part tutorial to find out about the basics of this new feature of React. Follow along to find out more! 据知情人士称&#xff0c;React Hooks很热&…