For example, say I have this SQL Script:
create table Person
(
id int primary key,
name nvarchar(40)
)
create table Country
(
id int primary key,
name nvarchar(40)
)
How can I have those commands in a single file and be able to run it?