Python PostgreSQL 选择数据

Python PostgreSQL 选择数据

你可以使用 SELECT 语句检索 PostgreSQL 中一个现有的表的内容。在这个语句中,你需要指定表的名称,它以表格的形式返回其内容,这就是所谓的结果集。

语法

以下是PostgreSQL中SELECT语句的语法

SELECT column1, column2, columnN FROM table_name;

例子

假设我们使用以下查询创建了一个名为CRICKETERS的表-

postgres=# CREATE TABLE CRICKETERS (
   First_Name VARCHAR(255), Last_Name VARCHAR(255), 
   Age int, Place_Of_Birth VARCHAR(255), Country VARCHAR(255)
);
CREATE TABLE
postgres=#

如果我们使用INSERT语句在其中插入5条记录,如 −

postgres=# insert into CRICKETERS values('Shikhar', 'Dhawan', 33, 'Delhi', 'India');
INSERT 0 1
postgres=# insert into CRICKETERS values('Jonathan', 'Trott', 38, 'CapeTown', 'SouthAfrica');
INSERT 0 1
postgres=# insert into CRICKETERS values('Kumara', 'Sangakkara', 41, 'Matale', 'Srilanka');
INSERT 0 1
postgres=# insert into CRICKETERS values('Virat', 'Kohli', 30, 'Delhi', 'India');
INSERT 0 1
postgres=# insert into CRICKETERS values('Rohit', 'Sharma', 32, 'Nagpur', 'India');
INSERT 0 1

下面的SELECT查询从CRICKETERS表中检索FIRST_NAME、LAST_NAME和COUNTRY列的值。

postgres=# SELECT FIRST_NAME, LAST_NAME, COUNTRY FROM CRICKETERS;
first_name  | last_name  | country
------------+------------+-------------
Shikhar     | Dhawan     | India
Jonathan    | Trott      | SouthAfrica
Kumara      | Sangakkara | Srilanka
Virat       | Kohli      | India
Rohit       | Sharma     | India
(5 rows)

如果你想检索每条记录的所有列,你需要用 “*”替换列的名称,如下图所示

postgres=# SELECT * FROM CRICKETERS;
first_name  | last_name  | age | place_of_birth | country
------------+------------+-----+----------------+-------------
Shikhar     | Dhawan     | 33  | Delhi          | India
Jonathan    | Trott      | 38  | CapeTown       | SouthAfrica
Kumara      | Sangakkara | 41  | Matale         | Srilanka
Virat       | Kohli      | 30  | Delhi          | India
Rohit       | Sharma     | 32  | Nagpur         | India
(5 rows)
postgres=#

使用python检索数据

对任何数据库的READ操作意味着从数据库中获取一些有用的信息。你可以使用psycopg2提供的fetch()方法从PostgreSQL中获取数据。

Cursor类提供了三个方法,即fetchall()、fetchmany()和fetchone()。

  • fetchall()方法检索查询结果集中的所有行,并以图元列表的形式返回这些行。(如果我们在检索了几条记录后执行这个方法,它会返回剩余的记录)。

  • fetchone()方法获取查询结果中的下一条记录,并将其作为一个元组返回。

  • fetchmany()方法与fetchone()类似,但它检索查询结果集中的下一组行,而不是单行。

注意 - 当游标对象被用来查询一个表时,结果集是一个被返回的对象。

例子

下面的Python程序连接到一个名为Mydb的PostgreSQL数据库,并从一个名为EMPLOYEE的表中检索所有记录。

import psycopg2

#establishing the connection
conn = psycopg2.connect(
   database="mydb", user='postgres', password='password', host='127.0.0.1', port= '5432'
)

#Setting auto commit false
conn.autocommit = True

#Creating a cursor object using the cursor() method
cursor = conn.cursor()

#Retrieving data
cursor.execute('''SELECT * from EMPLOYEE''')

#Fetching 1st row from the table
result = cursor.fetchone();
print(result)

#Fetching 1st row from the table
result = cursor.fetchall();
print(result)

#Commit your changes in the database
conn.commit()

#Closing the connection
conn.close()

输出

('Ramya', 'Rama priya', 27, 'F', 9000.0)
[('Vinay', 'Battacharya', 20, 'M', 6000.0),
('Sharukh', 'Sheik', 25, 'M', 8300.0),
('Sarmista', 'Sharma', 26, 'F', 10000.0),
('Tripthi', 'Mishra', 24, 'F', 6000.0)]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程