i have two fields with a string in it, and i want a combination of those in a third field like:
UPDATE table SET field3=field1 . '_' . field2
what would be the right syntax for that? it is mysql
okay that CONCAT Thing worked, is there a function to convert those fields to lowercase??