Postgresql流水帳(第五天):增刪查改

來源:互聯網
上載者:User

標籤:

增:insert

INSERT INTO products (product_no, name, price) VALUES

(1, ‘Cheese‘, 9.99),

(2, ‘Bread‘, 1.99),

(3, ‘Milk‘, 2.99);

可以一次插入多行資料。

INSERT INTO products (product_no, name, price) VALUES (1, ‘Cheese‘, DEFAULT);

INSERT INTO products DEFAULT VALUES;

INSERT INTO products (product_no, name) VALUES (1, ‘Cheese‘);

INSERT INTO products VALUES (1, ‘Cheese‘);

插入預設值,從左向右賦值,無值的或未指定值的賦預設值,或顯式把所有列賦預設值。

?

?

刪:delete

DEDELETE FROM products;

LETE FROM products WHERE price = 10;

刪除滿足where條件的記錄或

刪除所有記錄(如果不提供where條件)

?

?

改:update

To update existing rows, use the?UPDATE?command. This requires three pieces of information:

  1. The name of the table and column to update
  2. The new value of the column
  3. Which row(s) to update

?

UPDATE mytable SET a = 5, b = 3, c = 1 WHERE a > 0;

UPDATE products SET price = price * 1.10;

可以更新所有記錄,也可以更新某條記錄,取決於where條件。

可以更新多個欄位。

如果沒有記錄滿足where條件,不報錯。

?

查:select

Postgresql流水帳(第五天):增刪查改

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.