Jump to content

How to take the first letter and insert it in another field


hoverinc

Recommended Posts

 

 

THANKS Juddster, i have checked that and worked

 

SELECT LEFT(names, 1)from test

 

Now i will to find out how to insert it again to it's corrisponding field using UPDATE because the other fields contains data, if you have idea regarding during my checkup i would be thankful.  :D

There's nothing else we can tell you aside from writing the query for you.

UPDATE someTable SET field2 = LEFT(field1, 1);

 

Also, there's no reason to ever do this, you're duplicating data and you'll only make it hard on yourself.

 

-Dan

There's nothing else we can tell you aside from writing the query for you.

UPDATE someTable SET field2 = LEFT(field1, 1);

 

Also, there's no reason to ever do this, you're duplicating data and you'll only make it hard on yourself.

 

-Dan

 

Thanks that worked perfectly

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.