Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

235
Views
How to find the latitude value and save it in another table in postgresql

I have a shp file, I want to get the latitude value and store it in an another table.

CREATE TABLE Polepoints ( X varchar(50),Y varchar(50),Z  varchar(50));

Insert action :

INSERT INTO Polepoints (X) Select ST_X (ST_Centroid(geos)) from mytable

It throws out error

column X doesn't exist

but the column and the table exists. I am a beginner.

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

The problem has to be somewhere else. If the Polepoints table actually has a column named X , this error should not appear (see example below). Check if you are connected to the correct database or even if the polepoints in the polepoints table (the one containing column X ) is in a different schema.

 CREATE TABLE Polepoints ( X varchar(50),Y varchar(50),Z varchar(50)); WITH mytable (geos) AS ( VALUES ('POINT(1 1)'),('POINT(2 3)') ) INSERT INTO Polepoints (X) SELECT ST_X (ST_Centroid(geos)) FROM mytable; SELECT * FROM polepoints; x | y | z ---+---+--- 1 | | 2 | |
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!