mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
10 lines
135 B
Transact-SQL
10 lines
135 B
Transact-SQL
USE [taxidata]
|
|
GO
|
|
|
|
CREATE TABLE [dbo].[nyc_taxi_models](
|
|
[model] [varbinary](max) NOT NULL
|
|
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
|
|
GO
|
|
|
|
|