문제

I want to delete all the data of a single field. This field is a ''multipled value lookup field''; I tried this query in the SQL design tab:

UPDATE _myDatabase SET [_myDatabase].mycolumn= Null;

but it's not working (although it works for a any non-lookup fields). Any idea how to solve this?

도움이 되었습니까?

해결책

Because you are using a multi value field, you must treat the field as a separate table, which it actually is under the hood.

So you use a DELETE statement:

DELETE _myDatabase.mycolumn.Value FROM _myDatabase
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top