mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
16 lines
259 B
Transact-SQL
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
|
|
|
|
|