For Home/Group tuition contact us at 8638213230
Write a psql script to list the columns with `text` datatypeAnswer:
SELECT column_nameFROM information_schema.columnsWHERE table_name = 'myTable' AND (data_type = 'text' OR data_type = 'character varying');
No comments:
Post a Comment