123ArticleOnline Logo
Welcome to 123ArticleOnline.com!
ALL >> Computer-Programming >> View Article

Sqlyoga: Adding Computed Columns In Sql Server

Profile Picture
By Author: sqlyoga
Total Articles: 4
Comment this article
Facebook ShareTwitter ShareGoogle+ ShareTwitter Share

A scenario that required me to add one calculated column came up today. When a column is computed, it can be used in queries just like any other column and allows us to change one or more columns from the same table.

Lets try it:
Create One Table: tblTestComputed
CREATE TABLE tblTestComputed(
FirstName VARCHAR(50),
LastName VARCHAR(50)
)
Lets insert some data into it:
INSERT INTO tblTestComputed(FirstName, LastName)
SELECT 'Tejas', 'Shah'
UNION
SELECT 'Hiral', 'Shah'
So now I run:
SELECT * FROM tblTestComputed
I will get output like:
Output
I now require the display name to be something like “Shah Tejas” or “Shah Hiral”. I therefore created a new column and named it:
ALTER TABLE tblTestComputed
ADD FullName AS (ISNULL(LastName,'') + ' ' + ISNULL(FirstName,''))
So, now if I run:
SELECT * FROM tblTestComputed
So, Output like:
Output
Add a computed column called FullName to your table to combine first and last names, updating automatically.
However, it’s essential to note that ...
... computed columns cannot be updated directly since they are derived from other columns.
For a deeper dive into computed columns and their applications, click here to learn more. Join SQLYoga to boost your SQL and database skills with tutorials, articles, and expert tips. Be part of a growing community of learners.

Total Views: 125Word Count: 186See All articles From Author

Add Comment

Computer Programming Articles

1. Custom Mobile App Development
Author: SEO Niotechone Software

2. Best Business Analytics Courses In Bhopal | Top Institutes & Career Opportunities 2025
Author: Rohan Rajput

3. Discover Business Analytics Courses In Bhopal At Raj Institute Of Coding & Robotics
Author: Rohan Rajput

4. Top Ai Agents Companies
Author: Felipe Nunez

5. How A Hospital Management System Can Improve Healthcare In Zambia
Author: Agness Ruth

6. "elevate Your Programming Skills With Lcc Computer Education's Expert Training"
Author: Khushi Gill

7. Business Analytics Courses In Bhopal – A Smart Career Move With Raj Institute Of Coding & Robotics
Author: Rohan Rajput

8. Migrating To Aws: Your Step-by-step Guide To Cloud Transformation
Author: Tecnolynx Global Pvt. Ltd.

9. Getting The Best Seo Firm For Your Business Success
Author: webtek Digiytal

10. Advantages Of The Best Fitness App Development Company In Dubai
Author: webtek Digiytal

11. Find Top Business Analytics Courses In Bhopal – Enroll Now
Author: Rohan Rajput

12. Custom Laravel Web Development: Why It’s The Smart Choice For Your Business
Author: Adarsh

13. Best Web Development Institutes In Bhopal Offering Java Courses
Author: Rohan Rajput

14. Top Web Development Institutes In Bhopal For Java Coding Classes
Author: Rohan Rajput

15. Why Every Business Needs Online Accounting Software In Zambia 2025
Author: Doris Rose

Login To Account
Login Email:
Password:
Forgot Password?
New User?
Sign Up Newsletter
Email Address: