If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > convert all column records to lowercase?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-16-04, 17:25
dugawug dugawug is offline
Registered User
 
Join Date: Jun 2004
Posts: 3
convert all column records to lowercase?

hi,
SQL newbie here...using MySQL to be exact.
i want to convert a column of emails to be all lowercase.
is this possible?
i've searched this and other forums to no avail.
thanks for your help
Reply With Quote
  #2 (permalink)  
Old 06-16-04, 22:27
J.D. J.D. is offline
Registered User
 
Join Date: May 2004
Location: NJ USA
Posts: 21
Of course you can:

Try using the LOWER Function when updating your field.
__________________
J.D.
Database Administrator
Reply With Quote
  #3 (permalink)  
Old 06-17-04, 01:09
dugawug dugawug is offline
Registered User
 
Join Date: Jun 2004
Posts: 3
thanks, but maybe i wasn't clear.
i have a whole table already filled with data and i need to run a script that updates all of the exisiting data in a column and converts all the data to lowercase.
i'm an SQL newbie...is this possible?
something like:
UPDATE table SET column = LOWER() ???
Reply With Quote
  #4 (permalink)  
Old 06-17-04, 02:48
snorp snorp is offline
Registered User
 
Join Date: Apr 2004
Location: Europe->Sweden->Stockholm
Posts: 71
Quote:
Originally Posted by dugawug
something like:
UPDATE table SET column = LOWER() ???
UPDATE table SET column=LOWER(column) ?
Reply With Quote
  #5 (permalink)  
Old 06-17-04, 14:08
dugawug dugawug is offline
Registered User
 
Join Date: Jun 2004
Posts: 3
ah, very nice thanks!
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On