What do you mean "remove records in a column"? A record (row) contains
columns; a column doesn't contain a record. Do you mean delete a record
(row) that has a column w/ less than 50 characters?
DELETE *
FROM table_name
WHERE Len(column_name) < 50
If you mean set a column value to NULL if it contains a string that is <
50 chars:
UPDATE table_name
SET column_name = NULL
WHERE Len(column_name) < 50
--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)
-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv
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.