Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

add computed column to table sql server


        
            
        
     ALTER TABLE persons
ADD full_name AS (first_name + ' ' + last_name) PERSISTED;
Source by www.sqlservertutorial.net #
 
PREVIOUS NEXT
Tagged: #add #computed #column #table #sql #server
ADD COMMENT
Topic
Name
9+6 =