Does the order of creating fields in the table fulfill the effect of executing commands in the table? If so, can anyone discuss this?
For example, I created a table like this
create table Software(int id,alpha datetime,beta datetime,title nvarchar(100),stable datetime,description nvarchar(200) )
if i change it to
create table Software(int id,alpha datetime,beta datetime,stable datetime,description nvarchar(200),title nvarchar(100) )
Is there a performance effect?
Is this clear?
source share