The Complete Beginners Guide. DBMS with Microsoft SQL Server

所在平台: Udemy

课程主页: https://www.udemy.com/course/the-complete-dummies-guide-for-sql-with-microsoft-sql-server/

课程评论:没有评论

第一个写评论        关注课程

课程简介

课程名称:完整初学者指南:使用Microsoft SQL Server的数据库管理系统(DBMS) 课程概述:欢迎参加我的新课程“Microsoft SQL Server完全指南”。在信息技术时代,“数据”无处不在,而数据库是存储信息的地方。本课程将主要介绍结构化数据库,特别是最流行的SQL数据库——Microsoft SQL Server。以下是本课程的主要内容: 1. **数据库介绍**:First session将介绍数据库的基本概念及SQL(结构化查询语言)在关系数据库管理系统(RDBMS)中的应用。 2. **SQL命令和数据库对象**:学习不同类型的SQL命令和数据库对象。 3. **MSSQL Server基础**:指导如何在计算机上安装Microsoft SQL Server免费版本(Express Edition)和下载Microsoft SQL Server Management Studio(SSMS),并且如何连接这两个工具。 4. **基本数据库操作**:创建、列出、选择和删除数据库,了解如何备份数据库。 5. **表操作**:学习SQL数据类型、约束(如主键和外键),创建和操作表,包含插入、删除、修改和查询数据的基本操作。 6. **导入示例数据库**:导入Microsoft的Northwind Traders示例数据库,并进行基本聚合函数的学习。 7. **SQL基本子句和操作符**:介绍基本的SQL子句(如DISTINCT、GROUP BY、WHERE等)、操作符(比较、联合、交集等)。 8. **SQL数据类型和约束**:详细讲解SQL Server中流行的数据类型及约束的定义和使用。 9. **字符串、日期时间和数学函数**:熟悉常用的字符串处理函数和日期时间函数,及数学运算。 10. **SQL连接(Joins)**:深入了解不同的连接类型及其应用(内连接、外连接等)。 11. **存储过程**:学习如何创建、执行、修改和删除存储过程。 12. **子查询和视图**:理解SQL Server中的子查询和视图的创建及使用。 13. **触发器和事务**:学习触发器的不同种类及事务的使用(如ATM示例讲解)。 14. **数据库规范化**:了解数据库规范化的重要性以及不同类型。 15. **数据库备份和恢复**:掌握如何备份和恢复数据库。 16. **数据库安全性**:学习如何保护数据库及处理SQL注入攻击的技巧。 完成本课程后,学员将获得课程结业证书,增添个人履历的含金量。期待在课堂上见到你,祝学习愉快!

课程评论(0条)

课程详情

Hello and welcome to my new course 'The Complete Dummies Guide to Microsoft SQL Server'.You already know that in this information technology age 'data' is everything. And a Database is the place where this information is stored in tables. There are two types of database. A structured database and also there is an unstructured or no-sql kind of database. We will see the SQL or the Structured Query kind of database. And the most popular one among the SQL databases is the Microsoft SQL Server.Here is an overview about the sessions that are included in this course.In the first session, we will have an introduction to databases. Then we will see the concepts of SQL or Structured Query Language which is used in RDBMS.Then we will see different types of SQL commands. Then the database objects And in the next session, we will move on to the basics of MSSQL server. We will see how we can install the free version or the express edition of Microsoft SQL server into your computer and then we will download the Microsoft SQL Server Management Studio, which is a tool and an interface. And later we will connect SQL Server Management Studio with our MSSQL Server process that is running in the background.And then we will proceed with the basic SQL database operation. We will create a database, we will list the database in the server, then we can select a database using the USE command and finally we will try demonstrating deleting a database using the DROP command. There is also an option to take a backup of the database.And then we will move on with SQL basic table operations. We will have an overview of data types of SQL. Then we will have an overview of different SQL constraints and the difference between a primary key and foreign key. And finally we will start creating a table in our database. We will create it, we will try to delete it. We will try to alter it. And then we will move on to describing the table schema and inserting data into the table. Deleting data from the table, modifying data, then.. fetching the data all these basic table operations will be dealt with in this session.And then we will go ahead and import a sample database. It's a free sample database called the Northwind Traders database from Microsoft. We will download it and we will import that into our SQL server. Later we will proceed with basic aggregate functions of SQL. We will see what is an aggregate function and then we will proceed with each and every aggregate function.And then we will proceed with the basic clauses of SQL. We will see what is a clause and differentclauses. The first, Distinct clause, Group-by, Where clause, then Order-by, Having clause, Select and Grouping-sets. We will also have different examples for each and every clause that we learn. Then we will proceed with the basic operators of SQL server. The basic operators include Comparison operators Union operator, Intersect, In operator, Not, Between, Is Null, Not Null. Then we have the Like, Exists operator. We will try different examples.Then we will have an elaborate session with the SQL server data-types. The popular ones. Then we will have a detailed session regarding the constraints in SQL server. The constraints include Primary key, then Foreign key, Check then Unique then Default, Not Null constraints. The relationship between these tables and its columns are defined using a standard notation called the ER or Entity Relationship diagram. We will see what is an Entity, then we will see what is an Attribute and also what is the relationship in the ER diagram.And then we will proceed with the popular string functions or string manipulation functions in SQL server. These functions we can use to process a string inside our SQL server. We will also have an overview about the popular SQL Date and Time functions which are used to manipulate date and time data inside SQL server. And then we will proceed with the popular SQL mathematical operations. And also examples to demonstrate all these functions and then we will proceed with the SQL conversion functions which are used to perform data conversion inside SQL. We will try examples for these functions.And then we will move on to an important topic called SQL Joins. This join clause in SQL will enable us to connect between different tables which are linked by some common key. The popular ones are Inner join, Outer join, then Cross Join and Self Join We will see detailed examples, demonstrations for each of these joins and then we will proceed with Stored Procedures in SQL server. A block of re-usable SQL statements that are stored in the Server.We will see an overview about the stored procedure. Then we will see how we can create a stored procedure. Then execute then how we modify, delete the stored procedure and also we will see how we can pass input parameters into. Return the processed parameters from the stored procedure.And then we will see what is a sub-query inside SQL server. We will see an overview of sub-query. We will try different examples of how we can create a sub-query. And then we will proceed with Views in SQL server. We will see an overview about the views in SQL. Then, how we can create a view. We will try an example and how we can call the already created view. And then we will move on with SQL server triggers. Different types of SQL triggers. DDL trigger, the DML trigger, the two types of DML triggers. We will try them with examples.And then we will see what is a transaction in SQL server. We will have two states of transactions. We will explain it with the help of a bank ATM scenario and we will try examples of committing a transaction. Rolling back the transaction, the SQL transaction in case of an error. And then we will proceed with normalization of the table which is used to keep everything in order inside the database. We will see what normalization is in DBMS. We will see different types of normalization. Then we will be proceeding with the backup and restore of the database. We will see how we can backup a database. Save that into our computer and then later we can use that backup to restore that database.And in the final session, we will be discussing how we can secure a database. We will use an inbuilt tool to access the different security risks and the preventive measures that we can take. The steps that we can follow to fix those security risks and finally about the SQL injection technique which hackers use. We will see a few demonstrations how a hacker can include an SQL injection statement into our SQL server and get the data he wants.And that's all about the topics which are currently included in this quick course. The sample database and the materials have been uploaded and shared in a folder. I will include the link to download them in the last session or the resource section of this course. You are free to use that with no questions asked.Also, after completing this course, you will be provided with a course completion certificate which will add value to your portfolio.So that's all for now. See you soon in my classroom.Happy Learning!!

课程标签

0人关注该课程

主题相关的课程