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

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.

主站蜘蛛池模板: 清远市| 平定县| 桦南县| 文山县| 鹤岗市| 左权县| 深州市| 汤原县| 梁河县| 雷波县| 天门市| 巴林左旗| 乌审旗| 星座| 台南县| 那曲县| 莱州市| 云林县| 孝义市| 洪雅县| 屏东县| 石河子市| 当涂县| 天峨县| 马公市| 襄垣县| 鄱阳县| 揭东县| 凤庆县| 德钦县| 铜梁县| 沙田区| 宿松县| 崇义县| 广州市| 松原市| 青阳县| 湖北省| 普格县| 襄樊市| 兴安盟|