相关疑难解决方法(0)

计算列帮助 - TSQL

CREATE TABLE [dbo].[tblLocations](
    [latitude] [float] NOT NULL,
    [longitude] [float] NOT NULL,
    [location] [varchar](500) NOT NULL,
    [timestamp] [datetime] NOT NULL,
    [point] [geography] AS geography::Point(latitude, longitude, 4326) NOT NULL
)
Run Code Online (Sandbox Code Playgroud)

在这个词上给我不好的语法AS.

这不是你如何声明计算列?

t-sql calculated-columns

4
推荐指数
1
解决办法
2192
查看次数

标签 统计

calculated-columns ×1

t-sql ×1