WEB开发网
开发学院数据库MSSQL Server 使用SQL2008 中的空间数据类型 阅读

使用SQL2008 中的空间数据类型

 2008-09-28 10:04:56 来源:WEB开发网   
核心提示: 在查询编辑器中,在原有代码的下方输入下面的Transact-SQL 代码:INSERT INTO Store(StoreName, StoreAddress, StorePhone, StoreLocation)VALUES('Eastside Department Store&#

在查询编辑器中,在原有代码的下方输入下面的Transact-SQL 代码:

  INSERT INTO Store
  (StoreName, StoreAddress, StorePhone, StoreLocation)
  VALUES
  ('Eastside Department Store',
  '9992 Whipple Rd, Union City, CA 94587',
  '926-555-0164',
  geography::STGeomFromText('POINT(-122.084552 37.603936)', 4326))

注意: 这段代码使用geography 数据类型的STGeomFromText 方法,从一个文本描述中创建一个点的实例。

在查询编辑器中,在原有代码的下方输入下面的Transact-SQL 代码:

注意: 这段代码使用geography 数据类型的GeomFromGml 方法,从Geography Markup Language (GML) 描述中创建一个点的实例。GML 是OGC 针对XML 展现地理数据所定义的标准。

随便使用一种上面介绍过的技术,创建INSERT语句,从而可以将下面的商店信息添加到数据表中。

  Store Data  
  Store name: Exotic Bikes
  Store address: 6900 William Richardson Ct, South Bend, IN 46628
  Store telephone number: 415-555-0147
  Latitude and Longitude location: 41.733388 -86.298173  
  Store name: Healthy Activity Store
  Store address: 4460 Newport Center Drive, Newport Beach, CA 92625
  Store telephone number: 911-555-0165
  Latitude and Longitude location: 33.617021 -117.87749  
  Store name: Metropolitan Sports Supply
  Store address: 482505 Warm Springs Blvd, Fremont, CA 94539
  Store telephone number: 828-555-0186
  Latitude and Longitude location: 37.464038 -121.914168 

上一页  1 2 3 4 5 6 7 8 9  下一页

Tags:使用 SQL 空间

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接