6 lines
160 B
SQL
6 lines
160 B
SQL
select column_name, data_type
|
|
from information_schema.columns
|
|
where table_schema = 'public'
|
|
and table_name = 'patient_patient_tag'
|
|
order by ordinal_position;
|