A computed column in SQL Server is an expression which is based on another column in the same table. Consider the following example create table testtable ( id int, names varchar(100), custid as right('00000'+cast(id as varchar(10)),5) ) GO...
|
8
Shouts |
|
|||
No comments yet, be the first one to post comment.