You just need to install SQL Server with the database engine service On the Feature Selection page of SQL Server setup program you just need to select "Database Engine Services".
Once you have installed SQL Server and you get connected to the SQL Server isntance using SSMS, you can use BULK INSERT as shown below:
BULK INSERT SchoolsTemp
FROM 'C:\CSVData\Schools.csv'
WITH
(
FIRSTROW = 2,
FIELDTERMINATOR = ',', --CSV field delimiter
ROWTERMINATOR = '\n', --Use to shift the control to next row
ERRORFILE = 'C:\CSVDATA\SchoolsErrorRows.csv',
TABLOCK
)
You can use SSMS Import/Export Wizard.
Or you can use OPENROWSET.
select id, start_date
into sessions
from OPENROWSET(BULK 'C:\TempDocs\Sessions.csv',
formatfile='C:\TempDocs\Sessions.fmt',
firstrow=2) as sessions_insert;
Here you will find Microsoft documentation with more examples on how to use BULK INSERT or OPENROWSET.