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. How To Choose The Right Coding Institute In BhopalAuthor: Shankar Singh
2. Streamline Your Finances With The Best Bookkeeping Software In Zambia
Author: Doris Rose
3. Maximizing Ebay Success With Maropost/neto Partnerships
Author: rachelvander
4. The Rise Of Ai In Modern Gaming
Author: Saira
5. Enhancing Business Efficiency With Entrust Network: Singapore’s Premier It Solutions Partner
Author: Entrust Network Services
6. Ai And Ml Training: Empowering Your Career With Infograins Tcs
Author: Infograins tcs
7. How To Evaluate Coding Institutes In Bhopal?
Author: Shankar Singh
8. Revolutionizing Delivery Services With Application Development
Author: basheer ansari shaik
9. How Google Cloud Platform Aids Businesses And Keeps Its Data Safe?
Author: Stuart
10. Custom Web Development Solutions In Surat For Growing Businesses
Author: sassy infotech
11. Video Streaming App Development: 12 Key Features, Architecture And Cost
Author: Byteahead
12. Understanding Google Analytics Events
Author: Byteahead
13. Types Of Learning Management Systems
Author: Byteahead
14. How To Choose The Best Coding Institute In Bhopal?
Author: Shankar Singh
15. Top Tech Trends Real Estate Companies Should Focus
Author: Byteahead