2021
01-29
01-29
postgres array_to_string和array的用法讲解
有三张表,分别如下:select*fromvehicleselect*fromstationselect*fromvehicle_station需求:vehicle和station表示多对多的关系,需要把vehicle表对应的station表的第二字段查出来放到一个字段,如果对应多条,用逗号隔开放到一个字段。解决方案:SELECTv.*,array_to_string(ARRAY(SELECTstation_nameFROMstationWHEREIDIN(SELECTstation_idFROMvehicle_stationWHEREvehicle_id=v.ID)),',')station_n...
继续阅读 >