選択した列名から直接列ラベルを生成する一般的な方法が欲しいのですが、pythonのpsycopg2モジュールがこの機能をサポートしていることを思い出してください。
Mark Lutzによる「Programming Python」から:
curs.execute("Select * FROM people")
colnames = [desc[0] for desc in curs.description]
もう1つできることは、名前で列を参照できるカーソルを作成することです(最初にこのページにたどり着いたのは必要です)。
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
別のクエリで列名を取得にするには、information_schema.columnsテーブルをクエリできます。
#!/usr/bin/env python3
import psycopg2
if __== '__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 __== '__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))
Dbクエリから名前付きTuple objが必要な場合は、次のスニペットを使用できます。
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()
私も同様の問題に直面していました。私はこれを解決するために簡単なトリックを使用します。次のようなリストに列名があるとします
col_name = ['a', 'b', 'c']
その後、次のことができます
for row in cursor.fetchone():
print Zip(col_name, row)
SQLクエリを実行した後、2.7で記述されたpythonスクリプトを記述します
total_fields = len(cursor.description)
fields_names = [i[0] for i in cursor.description
Print fields_names
クエリの後に cursor.fetchone()
を使用して cursor.description
の列のリストを取得する必要があることに気付きました(つまり、[desc[0] for desc in curs.description]
)