What is actually difference between [] and ' ' I'm asking because when I wrote the query I couldn't write
SELECT *
FROM 'Order Details'
WHERE OrderID = 11077
only possibility was
SELECT *
FROM [Order Details]
WHERE OrderID = 11077
but I can rename AS 'some name for column'
why ' ' is sometimes wrong?
I'm using the Northwind sample database.