English 中文(简体)
如何将进入电梯田改为进入点的文字现场?
原标题:How to convert access memo field to text field in access query?
  • 时间:2010-11-17 10:10:02
  •  标签:
  • ms-access

我发现:

SELECT [PartsInfoRaw].[Types] as memofield, Replace([PartsInfoRaw].[Types],"","") AS textfield
into newTable FROM [PartsInfoRaw];

where Types is a memofield in PartsInfoRaw containing some description. The replace, for some reason, converts the memofield in a textfield. But it feels hacky, and I am not sure if it can turn sour. Does anyone have a better idea?

最佳回答

您是否在一份[图西]记录中测试了这一功能,在这种记录中,替代功能将恢复255多个特性? 你们将发现你的一些[文本领域]数据。

替代功能恢复体格,因此,进入正假定一种文字领域是适当的。

我不知道,你为什么必须使用一种选择,而不是建立一个表格,删除所有记录,然后更新新数据。

你们首先要打造结果表,这样,你就可以确保这两个领域都属于灰色。 然后,请大家问询(Insert Into)问题。 如果你只想在新的表格中提出这一询问的结果,你就必须首先提出删除问题。

delete from newTable;

阁下:

Insert into newTable(memofield, textfield)
SELECT [PartsInfoRaw].[Types] as memofield
     , Replace([PartsInfoRaw].[Types],"","") AS textfield
FROM [PartsInfoRaw];
问题回答

我不清楚你试图完成哪些工作,但你是否试图在你当选后离开([我的外地],255)?





相关问题
Handling no results for docmd.applyfilter

I have an Access app where I use search functionality. I have a TextBox and a Search Button on the form, and it does a wildcard search of whatever the user enters in the TextBox, and displays the ...

access query to filter and combine count

i have two access tables tableA num count 1 7 2 8 3 9 4 9 5 13 6 6 tableB num count 0 1 1 14 2 12 3 5 4 5 5 11 6 5 how can i create an access query that ...

How to show File Picker dialog in Access 2007?

I want to show a dialog where the user can pick a file, click OK, and then the path to the file will be saved in the database. I have just one problem, I can t figure out how tho show the dialog ...

MS Access: list macro from VBA

I have to deal with a few macros (not VBA) in an inherited Access application. In order to document them, I would like to print or list the actions in those macros, but I am very dissatisfied by ...

Returning row number on MS Access

I have 4 tables, from which i select data with help of joins in select query...I want a serial no.(row number) per record as they are fetched. first fetched record should be 1, next 2 and so on... In ...

热门标签