I
I
iseekyouu2017-02-01 10:04:22
SQL
iseekyouu, 2017-02-01 10:04:22

Which Select will be faster?

mssql database. There is a table, type reference, I want to add a link field to it. I can not decide what type, string or integer?
which select will work faster:
select * from test_table where Code = 1
or
select * from test_table where Code = 'one' ?
How significant will the difference be on large volumes?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Denis Ahrimov, 2017-02-01
@Piarto

1) Faster than int (i.e. 1)
2) If you want faster, then select * is incorrect, because it works much slower than select [first_element], [second_element]... (i.e. selecting each element from the table)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question