I just started to read about table lock in SQL (from this page)
It saids:
table lock may reduce the overhead of acquiring a large number of row or page locks and save overall locking time
From my understanding it will prevent other query to access the table I have locked, but why will this improve the performance? Isn't it will slow down over roll queries when there is mutiple user trying to use the table? Can someone explain little bit more?

