I have a file with .bak extension.
.bak
How can I import this date to a database in SQL Server?
Simply use
sp_restoredb 'Your Database Name' ,'Location From you want to restore'
Example: sp_restoredb 'omDB','D:\abc.bak'