- SQL Server on Linux
- Jasmin Azemovi?
- 205字
- 2021-07-02 20:24:19
Database objects
Tables are the containers for database records. They represent basic elements of the database structure. For example, Students, Educators, Courses, and Grades can be a table in some hypothetical eUniversity system. Tables are built around data types bounded on table columns. For example, LastName - nvarchar(50), Salary - Money, BirthDate - datatime. Every data operation includes tables and some of the other database objects (listed as follows):
- Stored procedures are objects in the database for storing methods of actions. A procedure could be described as a program that processes actions in the database. For example, inserts, updates, and/or delete rows in a table.
- Functions are objects in the database that encapsulate formulas and calculations and return either scalar values, or sets of data.
- Views are an object that consists of one select-statement, and are referenced as a table. Normalized database views bring normalized data together and masks complex table structures.
- Schemas are an organizational object and can be described as a folder in a filesystem. All objects in a database must belong to a schema.
- User-defined objects are objects that consist of an interpretation of a native SQL Server data type and offer a standardized method of describing the value of columns, variables, and parameters.
推薦閱讀
- C++ Primer習題集(第5版)
- Advanced Machine Learning with Python
- Mobile Application Development:JavaScript Frameworks
- AngularJS Web Application Development Blueprints
- 體驗設計原理:行為、情感和細節
- oreilly精品圖書:軟件開發者路線圖叢書(共8冊)
- PostgreSQL 11從入門到精通(視頻教學版)
- Effective Python Penetration Testing
- Python貝葉斯分析(第2版)
- Scala編程實戰(原書第2版)
- Instant Ext.NET Application Development
- MATLAB for Machine Learning
- Python深度學習:模型、方法與實現
- MongoDB Administrator’s Guide
- Java EE基礎實用教程