java中随机选择字符串
我正在开发一个在访问层使用jsp和servlet以及oracle 10g的项目。我在数据库中的字段上创建了一个序列,插入记录时该序列会自动递增。 该序列作为字符串存储在数据库中。现在我必须使用 servlet 随机选择其中几个序列元素。
我该怎么做?
I am working on a project using jsp and servlets and oracle 10g in access layer. I have created a sequence on a field in my database which gets auto incremented when a record is inserted.
The sequence is stored as a string in database. Now i have to select randomly few of these sequence elements using servlets.
How can i do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的谷歌搜索让我得到了以下查询:
这将选择 10 个随机 table.column 值(在 Oracle 中)。
如果您需要更多列:
只需使用 JDBC 来执行此查询。
A simple google search led me to the following query:
This will select 10 randow table.column values (in Oracle).
If you need more columns:
Just use JDBC to execute this query.