|
所在平台: Udemy |
课程主页: https://www.udemy.com/course/azure-sql-database-x/
课程评论:没有评论
**课程名称:** Azure SQL Database **课程概述:** 本课程将带您深入了解 Microsoft Azure SQL Database,这是一项托管在 Microsoft Azure 云平台上的数据库服务。作为一种云数据库,Azure SQL Database 提供作为服务的访问方式,并负责处理数据库的可扩展性、备份和高可用性等关键管理任务。 Azure SQL Database 被设计为一款智能、可扩展的关系型云数据库服务。它通过自动化的、由人工智能驱动的特性,优化性能和持久性,并始终保持最新状态。通过服务器less 计算和 Hyperscale 存储选项,您可以轻松应对不断增长的存储需求和资源管理挑战,专注于构建新应用,而无需担心存储大小或资源配置。 作为一种完全托管的平台即服务 (PaaS) 数据库引擎,Azure SQL Database 能够自动处理大部分数据库管理职能,例如升级、补丁、备份和监控,无需用户介入。 **课程核心内容:** 在本课程中,您将重点学习如何在 Azure SQL Database 上执行 CRUD 操作。CRUD 是一个缩写,代表“创建”(CREATE)、“读取”(READ)、“更新”(UPDATE) 和 “删除”(DELETE)。在 SQL Server 中,CRUD 操作对应于对特定 SQL 数据库中选定数据执行的四个主要操作: * **CREATE (创建):** 指向表中插入新的列和数据。 * **READ (读取):** 从表中检索数据。 * **UPDATE (更新):** 修改表中已有的数据。 * **DELETE (删除):** 从表中移除数据。 通过实践操作,您将熟练掌握如何在 Azure SQL Database 中进行这些核心的数据管理操作。
Microsoft Azure SQL Database is a managed cloud database provided as part of Microsoft Azure. A cloud database is a database that runs on a cloud computing platform, and access to it is provided as a service. Managed database services take care of scalability, backup, and high availability of the database.Azure SQL Database is an intelligent, scalable, relational database service built for the cloud. Optimize performance and durability with automated, AI-driven features that are always up to date. Focus on building new applications without worrying about storage size or resource management with serverless compute and Hyperscale storage options that automatically scale resources on demand.Azure SQL Database is a fully managed platform as a service (PaaS) database engine that handles most of the database management functions such as upgrading, patching, backups, and monitoring without user involvement.In this course we will perform some CRUD Operations on and Azure SQL Database.CRUD is an acronym that stands for CREATE, READ, UPDATE, and DELETE. In SQL Server, CRUD is represented by 4 operations performed on the selected data against a specific SQL database: CREATE refers to inserting columns and values into the table. READ refers to retrieving data from the table.