-----Original Message----- From: jose isaias cabrera <[EMAIL PROTECTED]> Reply-To: sqlite-users@sqlite.org To: sqlite-users@sqlite.org Subject: [sqlite] Adding data to the end of a column Date: Wed, 30 Jan 2008 14:34:17 -0500
Greetings. Is there a way to add data to the end of a field? I know I select that field, import the data into a variable and then add whatever to the end. What I am trying to do is exactly NOT that. :-) So, instead, just add say a line or two of text to a field. Is this possible? thanks, josé Try: UPDATE tablename SET something = something + " addition"; Not sure of the exact syntax for contacenation -- could be + or . or something else. Shawn ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------