Guest_imported
New member
- Jan 1, 1970
- 0
update person
set expirience = cv
where id=1
Field experience = BLOB (memo)
Field cv = CHAR(255)
This doesn't work, unfortunately.
update person
set experience = "bla bla bla"
where id=1
This does work, but I can't asign (first SQL)
a CHAR field to the BLOB field (experience).
set expirience = cv
where id=1
Field experience = BLOB (memo)
Field cv = CHAR(255)
This doesn't work, unfortunately.
update person
set experience = "bla bla bla"
where id=1
This does work, but I can't asign (first SQL)
a CHAR field to the BLOB field (experience).