Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8195815
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T05:15:54+00:00 2026-06-07T05:15:54+00:00

I learn SQL from this: http://www.w3schools.com/sql/sql_select.asp SELECT LastName,FirstName FROM Persons this show me: LastName

  • 0

I learn SQL from this: http://www.w3schools.com/sql/sql_select.asp

SELECT LastName,FirstName FROM Persons

this show me:

LastName   |    FirstName
Hanse      |        Ola
Svendson   |    Tove
Pettersen  |    Kari

how can i add for this own columns without get data from DATABASE?
for example:

SELECT TEST(default: aaa), LastName,FirstName FROM Persons

this should show me:

TEST | LastName   | FirstName
aaa  | Hanse      |        Ola
aaa  | Svendson   | Tove
aaa  | Pettersen  | Kari
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T05:15:55+00:00Added an answer on June 7, 2026 at 5:15 am

    If you want to create a “default” value on an actual field in a table you could use either the Coalesce or IsNull functions (please assume that Test is an actual field):

    SELECT COALESCE(test, 'aaa') as Test, LastName,FirstName FROM Persons
    
    SELECT ISNULL(test, 'aaa') as Test, LastName,FirstName FROM Persons
    

    Both of these will return either the actual value of the field Test or ‘aaa’ if Test is Null.

    We use COALESCE when retrieving the next Primary Key from a table (we don’t use the Identity Property to maintain our PK’s)

    SELECT (COALESCE(MAX(PK), 0) + 1) FROM TableName
    

    This way if there if the table doesn’t contain any rows then 1 will be returned.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to learn SQL and wondering if something like this possible. Select
First off, here's my SQL query: SELECT research_cost, tech_name, (SELECT research_cost FROM technologies WHERE
Im looking to learn more about your testing flows with Django. Background information http://docs.djangoproject.com/en/dev/topics/testing/
From a previous question , I learn that Linq to SQL is not able
I subscribe to a newsletter from www.sqlservercentral.com that I like because each day I
I am trying to learn SQL query optimization using SQL Server 2005. However, I
i just installed sql server 2008 express in order to learn microsoft sql. why
I'm just starting to learn T-SQL and could use some help in understanding what's
I am trying to learn LINQ to SQL. I have successfully implemented insert method
I'm trying to learn LINQ to SQL and I'm able to query the database

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.