필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Can we see query fields in Workplace?

조회 수: 1 (최근 30일)
Nan Shen
Nan Shen 2013년 1월 23일
마감: MATLAB Answer Bot 2021년 8월 20일
Can we also pull query fields into workplace when we query data? How to do it?
  댓글 수: 5
Walter Roberson
Walter Roberson 2013년 1월 24일
Could you give an example of what you would like to do?
Nan Shen
Nan Shen 2013년 1월 25일
I use query builder to query data from our database. it pops up a variable with data I need. But what I also need are names of those columns (fields in Query Builder). Can we have another varible in workspace showing the field names? thanks!

답변 (1개)

the cyclist
the cyclist 2013년 1월 25일
There is no way that I know of to return the column names along with the data of those columns. (It would be a bit odd to do so, since the names and data may be of different types.)
You can query the metadata of the database to get column names. For example, in postgresql you can write
SELECT attname , typname FROM pg_attribute , pg_type WHERE
typrelid=attrelid AND typname = 'table_name' ;
to find the columns for the table named table_name.

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by