MI-L Drop/delete a temporary column

2000-11-28 Thread Huang, Shu-Hua
Hi all, I am trying to update one temporary column. I am thinking, if I can delete that column and add new column, then I will get my job done. However, what I found from the reference book is: alter table cannot be used on linked tables. I can't use Update Statement either, as I need to get

Re: MI-L Drop/delete a temporary column

2000-11-28 Thread Geografía y Electrónica, SA de CV
You can't get rid of temporary columns on base tables unless you close the base table. What I do is to create a temporary query table and I add the column to the query, not to the base table. In your example: Select * from table1 into table2 Add Column "table2" LayerName (POP Float) From