官术网_书友最值得收藏!

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."

Note

Warnings or important notes appear in a box like this.

Tip

Tips and tricks appear like this.

主站蜘蛛池模板: 淮滨县| 灵寿县| 平江县| 隆回县| 东光县| 阜阳市| 三台县| 邮箱| 红桥区| 五常市| 若尔盖县| 介休市| 广灵县| 沿河| 邢台县| 南乐县| 遂川县| 泰来县| 宽城| 丁青县| 米脂县| 枝江市| 平湖市| 桃园市| 华阴市| 景德镇市| 新绛县| 三亚市| 长汀县| 白银市| 灵石县| 龙海市| 宽城| 新余市| 商城县| 皮山县| 柳林县| 信丰县| 湘阴县| 江北区| 梅州市|