Redian新闻
>
菜鸟急问一个关于用frontpage往数据库里写数据的问题
avatar
菜鸟急问一个关于用frontpage往数据库里写数据的问题# Database - 数据库
s*r
1
我不是搞数据库的,但是现在实习的老板突然让我给组里的一个数据库加点新东西,现
学现卖,最后还是遇到难题了。我的实习周五就要结束,希望能够把任务完成,留个好
印象啊。
Name Owner
server1 Mike
server2 Rich
server3 Mike,Rich
上面是我的一个表
我想用frontpage往数据库里写关于server的信息,在owner这里呢希望是数据库存储的
时候能innore这个一些空格的存在,
比如,不管用户输入“Mike,Rich" or " Mike, Rich ",
还有就是不管顺序也可以忽略,比如"Mike, Rich" or "Rich, Mike"
最后 select distinct Owner from table的结果是不能把上述输入当作两种不同的内
容。
现在的sql语句是
Owner")%>">
avatar
B*g
2
什么数据库,哪个版本

【在 s*******r 的大作中提到】
: 我不是搞数据库的,但是现在实习的老板突然让我给组里的一个数据库加点新东西,现
: 学现卖,最后还是遇到难题了。我的实习周五就要结束,希望能够把任务完成,留个好
: 印象啊。
: Name Owner
: server1 Mike
: server2 Rich
: server3 Mike,Rich
: 上面是我的一个表
: 我想用frontpage往数据库里写关于server的信息,在owner这里呢希望是数据库存储的
: 时候能innore这个一些空格的存在,

avatar
s*r
3
就是个.mdb的file,里面就是个表。我平时用ms access打开的
我在网上搜索资料,觉得可以考虑在原来那个.asp文件里面
用select distinct replace( owner, ' ','') from table来去掉空格,结果老是提示
出错。不知道为什么。
avatar
s*r
4
奇怪的很,很简单的一句
select distinct replace( owner, ' ','') from table
在我的.asp file里就是用不了,如果只用select distinct owner的话,就能正常显示
结果,加了replace的话,下拉框里立马就空了。请高手解释一下吧。谢谢了。
avatar
j*n
5
试试用双引号。

【在 s*******r 的大作中提到】
: 奇怪的很,很简单的一句
: select distinct replace( owner, ' ','') from table
: 在我的.asp file里就是用不了,如果只用select distinct owner的话,就能正常显示
: 结果,加了replace的话,下拉框里立马就空了。请高手解释一下吧。谢谢了。

avatar
B*g
6
select distinct onwer1
from (select replace( owner, ' ','') as onwer1 from table)
不过这不是正确解法,明天我研究一下。

【在 s*******r 的大作中提到】
: 就是个.mdb的file,里面就是个表。我平时用ms access打开的
: 我在网上搜索资料,觉得可以考虑在原来那个.asp文件里面
: 用select distinct replace( owner, ' ','') from table来去掉空格,结果老是提示
: 出错。不知道为什么。

avatar
B*g
7
你也会access?

【在 j*****n 的大作中提到】
: 试试用双引号。
avatar
B*g
8
use telnet at work, no chinese input, try below
SELECT DISTINCT IIF(StrConv(TRIM(left(owner, instr(owner,',')-1)), 3) >=
StrConv(TRIM( mid(owner, instr(owner,',')+1)), 3),
StrConv(TRIM(left(owner, instr(owner,',')-1)), 3) & ','
& StrConv(TRIM( mid(owner, instr(owner,',')+1)), 3),
StrConv(TRIM( mid(owner, instr(owner,',')+1)), 3) & ','
& StrConv(TRIM(left(owner, instr(owner,',')-1)), 3)) AS "OWNER"
FROM [table]

提示

【在 B*****g 的大作中提到】
: select distinct onwer1
: from (select replace( owner, ' ','') as onwer1 from table)
: 不过这不是正确解法,明天我研究一下。

avatar
c*t
9
gee, I remember you've ever said can't access mitbbs at work

'
'

【在 B*****g 的大作中提到】
: use telnet at work, no chinese input, try below
: SELECT DISTINCT IIF(StrConv(TRIM(left(owner, instr(owner,',')-1)), 3) >=
: StrConv(TRIM( mid(owner, instr(owner,',')+1)), 3),
: StrConv(TRIM(left(owner, instr(owner,',')-1)), 3) & ','
: & StrConv(TRIM( mid(owner, instr(owner,',')+1)), 3),
: StrConv(TRIM( mid(owner, instr(owner,',')+1)), 3) & ','
: & StrConv(TRIM(left(owner, instr(owner,',')-1)), 3)) AS "OWNER"
: FROM [table]
:
: 提示

avatar
s*r
10
tried, still does not work

'
'

【在 B*****g 的大作中提到】
: use telnet at work, no chinese input, try below
: SELECT DISTINCT IIF(StrConv(TRIM(left(owner, instr(owner,',')-1)), 3) >=
: StrConv(TRIM( mid(owner, instr(owner,',')+1)), 3),
: StrConv(TRIM(left(owner, instr(owner,',')-1)), 3) & ','
: & StrConv(TRIM( mid(owner, instr(owner,',')+1)), 3),
: StrConv(TRIM( mid(owner, instr(owner,',')+1)), 3) & ','
: & StrConv(TRIM(left(owner, instr(owner,',')-1)), 3)) AS "OWNER"
: FROM [table]
:
: 提示

avatar
s*r
11
tried, still does not work
Microsoft VBScript compilation error '800a0401'
Expected end of statement
/index6.asp, line 123
fp_sQry="SELECT distinct replace(rack, " ", "") FROM Details"
-----------------------------------------^

【在 j*****n 的大作中提到】
: 试试用双引号。
avatar
j*n
12
Here was a guy who did ask how to convert from access to sql server... don't
remember? hehe

【在 B*****g 的大作中提到】
: 你也会access?
avatar
B*g
13
select出什么结果?
先到access里run一下,看结果对不对,我在2003上试了,可以用。

【在 s*******r 的大作中提到】
: tried, still does not work
: Microsoft VBScript compilation error '800a0401'
: Expected end of statement
: /index6.asp, line 123
: fp_sQry="SELECT distinct replace(rack, " ", "") FROM Details"
: -----------------------------------------^

avatar
B*g
14
这个sql在access里都不work

【在 s*******r 的大作中提到】
: tried, still does not work
: Microsoft VBScript compilation error '800a0401'
: Expected end of statement
: /index6.asp, line 123
: fp_sQry="SELECT distinct replace(rack, " ", "") FROM Details"
: -----------------------------------------^

avatar
B*g
15
telnet,全是乱码,摸进来容易嘛。

【在 c**t 的大作中提到】
: gee, I remember you've ever said can't access mitbbs at work
:
: '
: '

avatar
B*g
16
不记得,呵呵

't

【在 j*****n 的大作中提到】
: Here was a guy who did ask how to convert from access to sql server... don't
: remember? hehe

avatar
s*r
17
我用gui设置的droplist显示select结果,结果是一片空白。
后来我换了个角度考虑,原来是在显示结果里调整,现在我想在用户输入数据的之后,
存入table之前就调整了,写了一段javascript,去了空白,排序也完成了。
anyway,谢谢各位牛人。

【在 B*****g 的大作中提到】
: select出什么结果?
: 先到access里run一下,看结果对不对,我在2003上试了,可以用。

avatar
s*r
18
赞记忆力,再次感谢前辈的帮助。

't

【在 j*****n 的大作中提到】
: Here was a guy who did ask how to convert from access to sql server... don't
: remember? hehe

avatar
B*g
19
实习结束了干嘛去?

【在 s*******r 的大作中提到】
: 我用gui设置的droplist显示select结果,结果是一片空白。
: 后来我换了个角度考虑,原来是在显示结果里调整,现在我想在用户输入数据的之后,
: 存入table之前就调整了,写了一段javascript,去了空白,排序也完成了。
: anyway,谢谢各位牛人。

avatar
B*g
20
为啥还在用access?

don

【在 s*******r 的大作中提到】
: 赞记忆力,再次感谢前辈的帮助。
:
: 't

avatar
s*r
21
回学校上课啊,还没毕业呢。
用access主要是用来打开那个表的。其实没怎么用access。

【在 B*****g 的大作中提到】
: 实习结束了干嘛去?
avatar
j*n
22
赞转换思考角度。看来俺的思想还是有点僵化了,呵呵

【在 s*******r 的大作中提到】
: 我用gui设置的droplist显示select结果,结果是一片空白。
: 后来我换了个角度考虑,原来是在显示结果里调整,现在我想在用户输入数据的之后,
: 存入table之前就调整了,写了一段javascript,去了空白,排序也完成了。
: anyway,谢谢各位牛人。

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。