删除“修剪”在列字段中?

发布于 2024-11-30 09:51:23 字数 257 浏览 1 评论 0原文

参考上面的问题,当我尝试在 datagridview 中显示数据库时遇到问题。我有一个字段“Items”,但是当我将其调用到网格时,该字段将被命名为“TRIM(Items)”。 “TRIM”来自我的 sql 语句:-

<块引用>

从其他人中选择修剪(项目)2

我需要 TRIM,以便当我将数据调用到网格时没有空间。 无论如何,如何删除这个词但它仍然会修剪我的数据?

Referring to the question above, I have a problem when I'm trying to display my database in datagridview. I have a field "Items" but when I call it to the grid, the field will be name "TRIM(Items)". The "TRIM" comes from my sql statement :-

SELECT TRIM(Items) FROM others2

I need the TRIM so that there is no space when I called my data to the grid.
Anyway, how to remove the word but still it will trim my data?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夏尔 2024-12-07 09:51:23

尝试从其他人中选择 TRIM(Items) 作为项目2

Try SELECT TRIM(Items) As Items FROM others2.

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