lets say I'm trying to run the following .sql file from powershell
SELECT * FROM table
Currently this is how I am calling this file
Invoke-Sqlcmd -ServerInstance instance -Database database -Username username -Password password -InputFile basicQuery.sql
If I wanted to select from "myTable" how would I pass that parameter to the sql file?