Hi,
depends on what data you want read and depends on the database settings etc. You should think about correct transaction isolation levels etc.
But.. If you want you to read uncommitted data you can use NOLOCK table hint:
SELECT * FROM T1 WITH(NOLOCK)
If you have database option READ_COMMITTED_SNAPSHOT ON, you can read also committed data with READCOMMITTED table hint
SELECT * FROM T1 WITH(READCOMMITTED)
See BOL for the "Table hints" and "TRANSACTION ISOLATION LEVEL" topics for more details.