本快速入门介绍如何使用 Azure Data Studio 连接到 PostgreSQL,然后使用 SQL 语句创建数据库 tutorialdb 并对其进行查询。
若要完成本快速入门,需要 Azure Data Studio、Azure Data Studio 的 PostgreSQL 扩展以及对 PostgreSQL 服务器的访问权限。
安装 Azure Data Studio
。
安装 Azure Data Studio 的 PostgreSQL 扩展
。
安装 PostgreSQL
。 (或者,可以使用
az postgres up
在云中创建 Postgres 数据库)。
连接到 PostgreSQL
启动“Azure Data Studio”。
第一次启动 Azure Data Studio 时,将打开“连接”对话框。 如果未打开“连接”对话框,请选择“服务器”页中的“新建连接”图标:
在弹出的窗体中,转到“连接类型”,然后从下拉列表中选择“PostgreSQL” 。
使用 PostgreSQL 服务器的服务器名称、用户名和密码填写其余字段。
可以在编辑器中追加此语句或覆盖现有查询。 选择“运行”将仅执行突出显示的查询。 如果未突出显示任何内容,则选择“运行”将执行编辑器中的所有查询。
-- Drop the table if it already exists
DROP TABLE IF EXISTS customers;
-- Create a new table called 'customers'
CREATE TABLE customers(
customer_id SERIAL PRIMARY KEY,
name VARCHAR (50) NOT NULL,
location VARCHAR (50) NOT NULL,
email VARCHAR (50) NOT NULL
将以下代码片段粘贴到查询窗口并选择“运行”:
-- Insert rows into table 'customers'
INSERT INTO customers
(customer_id, name, location, email)
VALUES
( 1, 'Orlando', 'Australia', ''),
( 2, 'Keith', 'India', 'keith0@adventure-works.com'),
( 3, 'Donna', 'Germany', 'donna0@adventure-works.com'),
( 4, 'Janet', 'United States','janet1@adventure-works.com');
将以下代码片段粘贴到查询编辑器中,并选择“运行”:
-- Select rows from table 'customers'
SELECT * FROM customers;
将显示查询结果: