Загрузка данных


SELECT
    column_name,
    column_default,
    is_nullable,
    data_type
FROM information_schema.columns
WHERE table_schema = 'back_office'
  AND table_name = 'operation_type'
ORDER BY ordinal_position;