집 >데이터 베이스 >MySQL 튜토리얼 >MySQL의 SQL 쿼리에서 열 이름을 검색하는 방법은 무엇입니까?
MySQL을 사용하여 SQL 쿼리에서 열 이름 검색
MySQL에서는cursor.description 속성을 사용하여 쿼리 결과에서 열 이름을 추출할 수 있습니다. . 이 속성은 튜플의 튜플을 반환하며, 여기서 각 내부 튜플은 열 헤더를 나타냅니다. 다음 Python 코드 조각은 쿼리 결과에서 열 이름과 열 수를 모두 가져오는 방법을 보여줍니다.
<code class="python">import MySQLdb # Connect to MySQL try: db = MySQLdb.connect(host="myhost", user="myuser", passwd="mypass", db="mydb") except MySQLdb.Error as e: print("Error %d: %s" % (e.args[0], e.args[1])) sys.exit(1) # Execute a query cursor = db.cursor() cursor.execute("""select ext, sum(size) as totalsize, count(*) as filecount from fileindex group by ext order by totalsize desc;""") # Get column names field_names = [i[0] for i in cursor.description] # Get number of columns num_fields = len(cursor.description) # Print column names print("Column Names:") for name in field_names: print(name) # Print number of columns print("Number of Columns:", num_fields) # Close cursor and db cursor.close() db.close()</code>
이 예에서는 쿼리가 열 이름 ext, totalsize 및 filecount를 반환한다고 가정합니다. field_names 목록에는 이러한 열 이름이 포함되며 num_fields 변수는 3으로 설정되어 결과 집합의 열 수를 나타냅니다.
이 접근 방식은 사용자 지정 SQL을 사용하지 않고도 열 이름을 얻을 수 있는 쉬운 솔루션을 제공합니다. 구문 분석 논리.
위 내용은 MySQL의 SQL 쿼리에서 열 이름을 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!