Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
BULK
INSERT dbo.Leads
FROM 'c:\leads.csv'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
GO
--Check the content of the table.
SELECT *
FROM dbo.Leads
GO
--Drop the table to clean up database.
SELECT *
FROM dbo.Leads
GO
Create Table Colors(ID int, Color VarChar(20))
Insert Into Colors(ID, Color) Values(7,'Blue')
BULK
INSERT dbo.Colors
FROM 'c:\Colors.csv'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)