LATITUDE and LATITUDE are my two columns.
I have to combine these two columns into one column.
I have to combined these two columns as point values.
I tried this..,
SELECT `LATITUDE`, (LATITUDE) + ' ' + LONGITUDE+) AS point
FROM incident_google
but it is not working.
How to combine these two columns as one?
EX: LATITUDE= 38.8994816000000014,LONGITUDE=-76.9785097000000036
i need as
(38.8994816000000014,76.9785097000000036) as point
and say answer for this..,
thanks in advances.
SQL Server? the two are different thing.