python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to define a geography column in a table with different columns type at SQL database
Consider I have a table with different columns types:
CREATE TABLE [RentedHome]
(
[HomeID] INT NOT NULL PRIMARY KEY CLUSTERED,
[Address] CHAR (255) NOT NULL CHECK (LEN(Address) >= 2),
...
amin
Votes: 0
Answers: 1
Slow performance of Latitude/Longitude conversion in query
I have a performance problem with a SQL query running on SQL Server 2019 that returns the lat/long from a geography column.
My query is as follows and it takes around 5 seconds to return 553 rows:
SEL...
Stephen
Votes: 0
Answers: 2