[PostgreSQL] Table Data를 JSON타입으로 만들기
JSON으로 Data를 전송해야하는 경우 쿼리를 이용하여 Table Data를 JSON타입으로 만들 수 있다. Test Case drop table customers; create table customers ( customerID varchar ,customerName varchar ,contactName varchar ,address varchar ,city varchar ,postalCode varchar ,country varchar ); insert into customers values ('1', 'Alfreds Futterkiste', 'Maria Anders', 'Obere Str. 57', 'Berlin', '12209', 'Germany'); insert into customers va..
2019. 8. 12.