# -*- coding: utf-8 -*- from sqlalchemy import create_engine, text import json engine = create_engine('postgresql://admin:trajet6640@192.168.0.87:5432/apdb_master') with engine.connect() as conn: # llm_pharm이 있는 티어가드 확인 result = conn.execute(text(""" SELECT apc, product_name, llm_pharm FROM apc WHERE product_name ILIKE '%티어가드%' AND llm_pharm IS NOT NULL AND llm_pharm::text != '{}' ORDER BY apc """)) print('=== 티어가드 llm_pharm 있는 항목 ===') for row in result: print(f'APC: {row.apc}') print(f'제품명: {row.product_name}') if row.llm_pharm: llm = row.llm_pharm if isinstance(row.llm_pharm, dict) else json.loads(row.llm_pharm) print('llm_pharm:') for k, v in llm.items(): if v: print(f' {k}: {v}') print()