- SQL Server 2014 Development Essentials
- Basit A. Masood Al Farooq
- 158字
- 2021-09-03 10:07:24
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Each row in the Customer
table represents an individual customer."
A block of code is set as follows:
[default] DECLARE @Table2 TABLE ( COL1 [int], COL2 [varchar](30), COL3 [datetime], INDEX [ixc_col3] CLUSTERED (col3) WITH (FILLFACTOR=80), INDEX [ixnc_col1_col2] NONCLUSTERED (col1, col2) WITH (FILLFACTOR=80) );
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Right-click on User-Defined Data Types and choose New User-Defined Data Type."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- 數據科學實戰手冊(R+Python)
- Objective-C Memory Management Essentials
- Machine Learning with R Cookbook(Second Edition)
- 跟老齊學Python:輕松入門
- Instant 960 Grid System
- 深入理解Java7:核心技術與最佳實踐
- Web程序設計(第二版)
- 概率成形編碼調制技術理論及應用
- 零基礎輕松學SQL Server 2016
- 大模型RAG實戰:RAG原理、應用與系統構建
- 自然語言處理Python進階
- D3.js By Example
- Vue.js光速入門及企業項目開發實戰
- 軟件工程與UML案例解析(第三版)
- Python預測分析實戰