Quote:
FROM [dbo.][nameOfMyTable][n]
That's a syntax error. You've put the separator (
.) inside the square brackets.
Try:
CREATE VIEW nameOfMyTable.vSomethingAddedHere
WITH Schemabinding
AS
SELECT b.Name
FROM [dbo].[nameOfMyTable] [n]
INNER JOIN Tickets t ON [n].ID = t.ID
INNER JOIN Peple p ON p.ID = t.ID