删除“修剪”在列字段中?
参考上面的问题,当我尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
从其他人中选择 TRIM(Items) 作为项目2
。Try
SELECT TRIM(Items) As Items FROM others2
.