Let's say I have the following table:
ID Name Custom_Field
1  Alex   1_custom
2  Bob    2_somethingelse
.......
Can I do the insert in one sql statement? I couldn't find any function that will allow me to use my ID at the time of insert.
ID is INT IDENTITY(1,1)
I'm looking for something like this:
insert into table
values('Alex', ID_VALUE + '_custom')
 
     
    