数据库中有一列是文本列,应该是数组列。该列的所有值都是有效的Postgres数组(因为它们是从Postgres数组列中获取的文本值),格式为{valuea,valueb}
。我需要它们作为数组值,那么如何将它们转换回数组值?
答案 0 :(得分:1)
您可以将const express = require('express');
const Router = express.Router();
Router.get('/hello-world', (req, res, next) => {
res.send("hello world!"); //works great
});
与const {Router} = require('express');
Router.get('/hello-world', (req, res, next) => {
res.send("hello world!"); // :( doesnt work
});
选项一起使用
ALTER TABLE.. ALTER COLUMN