1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00
Files
sql-server-samples/samples/features/r-services/predictive-analytics/scripts/Create nyctaxi_features Table.sql
2017-02-02 13:46:51 -08:00

16 lines
259 B
Transact-SQL

USE [taxidata]
GO
CREATE TABLE [dbo].[nyctaxi_features](
[passenger_count] [int] NULL,
[trip_time_in_secs] [bigint] NULL,
[trip_distance] [float] NULL,
[direct_distance] [float] NULL,
[tip_amount] [float] NULL,
[tipped] [int] NULL
) ON [PRIMARY]
GO