Can anyone explain to me why there is a dramatic difference in performance between MySQL and SQL Server for this simple select statement?
SELECT email from Users WHERE id=1
Currently the database has just one table with 3 users. MySQL time is on average 0.0003 while SQL Server is 0.05. Is this normal or the MSSQL server is not configured properly?
EDIT:
Both tables have the same structure, primary key is set to id, MySQL engine type is InnoDB.
I tried the query with WITH(NOLOCK) but the result is the same.

id? – ypercube Jun 12 '12 at 6:49id– matino Jun 12 '12 at 6:57SELECT email FROM Users WITH(NOLOCK) WHERE id=1and compare. This is only a hunch though. – Namphibian Jun 12 '12 at 7:23SELECT CURRENT_TIMESTAMP. – Martin Smith Jun 12 '12 at 8:52