Copy value down a column

  • Thread starter Thread starter mike
  • Start date Start date
M

mike

Hi,

I imported a .txt file with about 100k lines and column 1 has SSN and column
2 has the name and what I need to do is create a 3rd column and have every
cell in the 3rd column populate with "ES1"

How do i do that?
 
Hi,

I imported a .txt file with about 100k lines and column 1 has SSN and column
2 has the name and what I need to do is create a 3rd column and have every
cell in the 3rd column populate with "ES1"

How do i do that?

SELECT SSN, Name, 'ES1' AS SomeColumnName
FROM MyTable
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top