MS-Access 中的查询:格式化 sql UPDATE 代码中间的字段

发布于 2024-07-21 01:18:23 字数 451 浏览 7 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森林迷了鹿 2024-07-28 01:18:23

您可以使用 SQL (DDL) 更改表的某些方面:

 ALTER TABLE TableName ALTER COLUMN  ColumnName Text(50)

You can use SQL (DDL) to change some aspects of a table:

 ALTER TABLE TableName ALTER COLUMN  ColumnName Text(50)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文