MS-Access 中的查询:格式化 sql UPDATE 代码中间的字段
我的 ms-access 中的数据还存在另一个问题。
基本上,我正在做的是使用多个 sql 语句来提取、排序和调整更改/操作数据。 我当前遇到的问题是我正在尝试使用这样的sql代码:
UPDATE analyzedCopy2 SET analyzedCopy2.DateRange = #4/21/2009# to #4/29/2009#
但我不知道如何在sql语句中将DateRange(当前是日期)重新格式化为文本。 我不能简单地手动设置格式,因为在此之前的 sql 代码正在从另一个表中提取所有数据,当发生这种情况时,它会自动将 DateRange 的格式更改为日期,因为这就是它所在的类型从。
如果有人知道如何使用 vba 代码格式化列,那也很好,因为我正在创建一个 vba 代码来按照我想要的顺序运行查询。
如果有人需要更好的解释,请告诉我。
I am having yet another problem with my data in ms-access.
Basically, what i'm doing is using multiple sql statements to pull, sort, and staight up change/manipulate data. The problem that im having currently is that i am trying to use a sql code like this:
UPDATE analyzedCopy2 SET analyzedCopy2.DateRange = #4/21/2009# to #4/29/2009#
but i can't figure out how to reformat DateRange (which is currently a date) to Text in the sql statement. I can't simply set the format manually because the sql code before this one is pulling in all of the data from another table and when that happens it changes the format of DateRange to date automattically since that is the type it is where it is coming from.
If anyone knows how to format a column with vba code then that would be fine too since i'm creating a vba code to run the queries in the order i want.
If anyone needs a better explanation of anything just let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SQL (DDL) 更改表的某些方面:
You can use SQL (DDL) to change some aspects of a table: