ALL >> Computer-Programming >> View Article
Sqlyoga: Adding Computed Columns In Sql Server
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.
Add Comment
Computer Programming Articles
1. Calling Agents – Ai Sales Agent With Call & EmailAuthor: Callingagents
2. Css Tutorial For Web Developers: Create Responsive And Attractive Websites
Author: Tech Point
3. Html Tutorial For Beginners: A Complete Guide To Learn Web Page Creation
Author: Tech Point
4. Dynamics 365 Human Resources Capabilities Organizations Managing A Growing Workforce Often Face Challenges Such As Disconnected Hr Systems, Manual Re
Author: brainbell10
5. Market Forecast: Ai Native Networking Platform
Author: Umangp
6. Microsoft Dynamics 365 Sales Module Features
Author: brainbell10
7. Tvos Apps Development Services
Author: davidjohansen
8. Esp Signature Vs Esp Ultimate: A Strategic Breakdown
Author: ECF Data
9. Javascript Tutorial For Students: Step-by-step Learning With Practical Examples
Author: Tech Point
10. Jquery Tutorial: A Complete Guide For Beginners To Advanced Learning
Author: Tech Point
11. Dynamics 365 Implementation Best Practices Guide
Author: brainbell10
12. Sql Server Development Services In Usa
Author: davidjohansen
13. Tableau Consulting & Data Visualization Services
Author: brainbell10
14. Why Startups Should Use Laravel For Ai Product Development
Author: Melisa Hope
15. Custom Snowflake Data Solutions
Author: brainbell10






