ฉันจะรับรายการชื่อคอลัมน์จากเคอร์เซอร์ psycopg2 ได้อย่างไร


137

ฉันต้องการวิธีทั่วไปในการสร้างป้ายชื่อคอลัมน์โดยตรงจากชื่อคอลัมน์ที่เลือกและจำได้ว่าเห็นโมดูล psycopg2 ของ python สนับสนุนคุณสมบัตินี้

คำตอบ:


224

จาก "Programming Python" โดย Mark Lutz:

curs.execute("Select * FROM people LIMIT 0")
colnames = [desc[0] for desc in curs.description]

64
หากคุณต้องการชื่อคอลัมน์อย่าเลือกแถวทั้งหมดในตาราง สิ่งนี้มีประสิทธิภาพมากขึ้น:curs.execute("SELECT * FROM people LIMIT 0")
Demitri

2
มันอาจจะมีมูลค่าเพิ่มว่างานนี้สำหรับมุมมองเช่นเดียวกับตารางในขณะที่มันไม่ได้ (ง่าย) information_schemaเป็นไปได้ที่จะได้รับชื่อคอลัมน์สำหรับมุมมองจาก
wjv

5
อาจใช้งานง่ายกว่าเพื่อรับชื่อเป็นแอตทริบิวต์: colnames = [desc.name สำหรับ desc in curs.description]
rovyko

สิ่งสำคัญที่ควรทราบว่าชื่อคอลัมน์ที่อ่านจากฟังก์ชันคำอธิบายเคอร์เซอร์จะแสดงเป็นตัวพิมพ์เล็ก curs.execute("Select userId FROM people") colnames = [desc[0] for desc in curs.description] assert colnames == ['userid']
dyltini

คุณควรอัปเดตคำตอบของคุณด้วยคำแนะนำ LIMIT 0 มิฉะนั้นคุณจะดึงตารางทั้งหมดเพียงเพื่อตรวจสอบชื่อ
Carlos Pinzón

41

อีกสิ่งที่คุณสามารถทำได้คือการสร้างเคอร์เซอร์ที่คุณจะสามารถอ้างอิงคอลัมน์ของคุณด้วยชื่อของพวกเขา (นั่นคือความต้องการที่นำฉันไปที่หน้านี้ในตอนแรก):

import psycopg2
from psycopg2.extras import RealDictCursor

ps_conn = psycopg2.connect(...)
ps_cursor = psql_conn.cursor(cursor_factory=RealDictCursor)

ps_cursor.execute('select 1 as col_a, 2 as col_b')
my_record = ps_cursor.fetchone()
print (my_record['col_a'],my_record['col_b'])

>> 1, 2

26

หากต้องการรับชื่อคอลัมน์ในแบบสอบถามแยกต่างหากคุณสามารถสืบค้นตาราง data_schema.columns

#!/usr/bin/env python3

import psycopg2

if __name__ == '__main__':
  DSN = 'host=YOUR_DATABASE_HOST port=YOUR_DATABASE_PORT dbname=YOUR_DATABASE_NAME user=YOUR_DATABASE_USER'

  column_names = []

  with psycopg2.connect(DSN) as connection:
      with connection.cursor() as cursor:
          cursor.execute("select column_name from information_schema.columns where table_schema = 'YOUR_SCHEMA_NAME' and table_name='YOUR_TABLE_NAME'")
          column_names = [row[0] for row in cursor]

  print("Column names: {}\n".format(column_names))

ในการรับชื่อคอลัมน์ในแบบสอบถามเดียวกับแถวข้อมูลคุณสามารถใช้ฟิลด์คำอธิบายของเคอร์เซอร์:

#!/usr/bin/env python3

import psycopg2

if __name__ == '__main__':
  DSN = 'host=YOUR_DATABASE_HOST port=YOUR_DATABASE_PORT dbname=YOUR_DATABASE_NAME user=YOUR_DATABASE_USER'

  column_names = []
  data_rows = []

  with psycopg2.connect(DSN) as connection:
    with connection.cursor() as cursor:
      cursor.execute("select field1, field2, fieldn from table1")
      column_names = [desc[0] for desc in cursor.description]
      for row in cursor:
        data_rows.append(row)

  print("Column names: {}\n".format(column_names))

16

หากคุณต้องการให้มีชื่อว่า tuple obj จากเคียวรี db คุณสามารถใช้ข้อมูลโค้ดต่อไปนี้:

from collections import namedtuple

def create_record(obj, fields):
    ''' given obj from db returns named tuple with fields mapped to values '''
    Record = namedtuple("Record", fields)
    mappings = dict(zip(fields, obj))
    return Record(**mappings)

cur.execute("Select * FROM people")
colnames = [desc[0] for desc in cur.description]
rows = cur.fetchall()
cur.close()
result = []
for row in rows:
    result.append(create_record(row, colnames))

นี้ช่วยให้คุณสามารถเข้าถึงค่าบันทึกราวกับว่าพวกเขาเป็นคุณสมบัติคลาสเช่น

record.id, record.other_table_column_name ฯลฯ

หรือสั้นกว่านั้น

from psycopg2.extras import NamedTupleCursor
with cursor(cursor_factory=NamedTupleCursor) as cur:
   cur.execute("Select * ...")
   return cur.fetchall()

4

หลังจากรันคำสั่ง SQL เพื่อเขียนสคริปต์ต่อไปนี้ให้ใช้สคริปต์ python ที่เขียนใน 2.7

total_fields = len(cursor.description)    
fields_names = [i[0] for i in cursor.description   
    Print fields_names


0

ฉันยังเคยเผชิญกับปัญหาที่คล้ายกัน ฉันใช้เคล็ดลับง่าย ๆ ในการแก้ปัญหานี้ สมมติว่าคุณมีชื่อคอลัมน์ในรายการเช่น

col_name = ['a', 'b', 'c']

จากนั้นคุณสามารถทำตาม

for row in cursor.fetchone():
    print zip(col_name, row)


-7
#!/usr/bin/python
import psycopg2
#note that we have to import the Psycopg2 extras library!
import psycopg2.extras
import sys

def main():
    conn_string = "host='localhost' dbname='my_database' user='postgres' password='secret'"
    # print the connection string we will use to connect
    print "Connecting to database\n ->%s" % (conn_string)

    # get a connection, if a connect cannot be made an exception will be raised here
    conn = psycopg2.connect(conn_string)

    # conn.cursor will return a cursor object, you can use this query to perform queries
    # note that in this example we pass a cursor_factory argument that will
    # dictionary cursor so COLUMNS will be returned as a dictionary so we
    # can access columns by their name instead of index.
    cursor = conn.cursor(cursor_factory=psycopg2.extras.DictCursor)

    # tell postgres to use more work memory
    work_mem = 2048

    # by passing a tuple as the 2nd argument to the execution function our
    # %s string variable will get replaced with the order of variables in
    # the list. In this case there is only 1 variable.
    # Note that in python you specify a tuple with one item in it by placing
    # a comma after the first variable and surrounding it in parentheses.
    cursor.execute('SET work_mem TO %s', (work_mem,))

    # Then we get the work memory we just set -> we know we only want the
    # first ROW so we call fetchone.
    # then we use bracket access to get the FIRST value.
    # Note that even though we've returned the columns by name we can still
    # access columns by numeric index as well - which is really nice.
    cursor.execute('SHOW work_mem')

    # Call fetchone - which will fetch the first row returned from the
    # database.
    memory = cursor.fetchone()

    # access the column by numeric index:
    # even though we enabled columns by name I'm showing you this to
    # show that you can still access columns by index and iterate over them.
    print "Value: ", memory[0]

    # print the entire row 
    print "Row: ", memory

if __name__ == "__main__":
    main()
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.