- PostgreSQL Server Programming(Second Edition)
- Usama Dar Hannu Krosing Jim Mlodgenski Kirk Roybal
- 259字
- 2021-07-23 20:36:45
Conventions
In this book, you will find a number of text styles 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: "If any of the checks fail, you should do ROLLBACK
instead of COMMIT
."
A block of code is set as follows:
CREATE TABLE accounts(owner text, balance numeric, amount numeric); INSERT INTO accounts VALUES ('Bob',100); INSERT INTO accounts VALUES ('Mary',200);
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
CREATE OR REPLACE FUNCTION fibonacci_seq(num integer) RETURNS SETOF integer AS $$ DECLARE a int := 0; b int := 1; BEGIN IF (num <= 0) THEN RETURN; END IF; RETURN NEXT a; LOOP EXIT WHEN num <= 1; RETURN NEXT b; num = num - 1; SELECT b, a + b INTO a, b; END LOOP; END; $$ LANGUAGE plpgsql;
Any command-line input or output is written as follows:
$ psql -c "SELECT 1 AS test"
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Enter some values into the columns, as seen in the preceding screenshot, and click on the Debug button."
- SQL Server 從入門到項目實踐(超值版)
- Java應用與實戰
- JavaScript修煉之道
- Building a RESTful Web Service with Spring
- Web交互界面設計與制作(微課版)
- R語言編程指南
- Visual Basic程序設計習題解答與上機指導
- Mastering Google App Engine
- FLL+WRO樂高機器人競賽教程:機械、巡線與PID
- Building a Quadcopter with Arduino
- Visual C#通用范例開發金典
- 深入分布式緩存:從原理到實踐
- Building Android UIs with Custom Views
- NetBeans IDE 8 Cookbook
- 一塊面包板玩轉Arduino編程