用SQL语言随机生成规定范围内的汉字
1、比如说我要在‘男’,‘女’中随机获得一个随机添加进数据库。2、我要在‘王’‘李’‘照’‘陈’‘黄’‘神’这几个字中随机组合三个字添加进数据库。在线等,谢谢!...
1、比如说我要在‘男’,‘女’中随机获得一个随机添加进数据库。
2、我要在‘王’‘李’‘照’‘陈’‘黄’‘神’这几个字中随机组合三个字添加进数据库。
在线等,谢谢! 展开
2、我要在‘王’‘李’‘照’‘陈’‘黄’‘神’这几个字中随机组合三个字添加进数据库。
在线等,谢谢! 展开
展开全部
mssqlserver:
select top 1 * from (
select '男' union all
select ‘女’)T
order by newid()
oracle:
with T as(
select '男' from dual union all
select '女' from dual)
select * from (select * from T order by sys_guid()) --order by在外层的话不起作用
where rownum=1
select top 1 * from (
select '男' union all
select ‘女’)T
order by newid()
oracle:
with T as(
select '男' from dual union all
select '女' from dual)
select * from (select * from T order by sys_guid()) --order by在外层的话不起作用
where rownum=1
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询