I have a Table called Students
, with the columns:
Name nvarchar(100)
LastName nvarchar(100)
Age int
Weight decimal
Height decimal
Adress nvarchar(200)
Does the following query:
SELECT Name, LastName, Age, Weight, Height, Adress FROM Students
…. will be affected by time changing the column order?
Example:
SELECT Height, Age, Weight, LastName, Name Adress FROM Students