⑴ sql语句查询结果如何大写结果如何拼接啊
--有什么疑问可以随时找我 希望采纳
select upper(a.sname) 姓名,a.sno 学号,b.cno 课程号,a.sno +'-'+b.cno 学号课程号
from a join b on a.cno=b.cno
where b.core<60
⑵ SQL语句如何查询首字母大写
select * from 表 where 字段 collate chinese_prc_cs_as_ws like 'A%' (查大写 )
select * from 表 where 字段 collate chinese_prc_cs_as_ws like 'a%' (查小写 )
--就是在字段名后加 collate chinese_prc_cs_as_ws
⑶ SQL如何转换成大写字母
Select
codesetid,upper(codeitemid)
as
codeitemid,codeitdesc,upper(parentid)
as
parentid,upper(childid)
as
childid
From
organization
希望以上答案能帮到你!
⑷ SQL语句 转换大小写问题
那你可以把首字符提取出来
如
declare @it varchar(8)
set @it='IT_PROG'
select charindex('_',@it)+1 --取出P处在位置,就是你变大写的位置
select Lower(@it) --转化为小写
select substring(@it,charindex('_',@it)+1,1) '取出P字母
select upper(substring(@it,charindex('_',@it)+1,1))) 把P变成大写
综合以下:
select stuff(lower(@it),charindex('_',@it)+1,1,upper(substring(@it,charindex('_',@it)+1,1)))
注stuff()用来把大写P代替小写p
⑸ SQL Server中有没有直接将小写金额转换成大写的函数啊,像日期函数一样,直接可以使用的
create function [dbo].[fn_getformatmoney] (@money numeric(14,2))
returns nvarchar(32) as
begin
declare @money_num nvarchar(20) --存储金额的字符形式 51itr.net
, @money_chn nvarchar(32) --存储金额的中文大写形式
, @n_chn nvarchar(1), @i int --临时变量 51itr.com
select @money_chn=case when @money>=0 then '' else '(负)' end
, @money=abs(@money)
, @money_num=stuff(str(@money, 15, 2), 13, 1, '') --加前置空格补齐到位(去掉小数点) 51itr
, @i=patindex('%[1-9]%', @money_num) --找到金额最高位
while @i>=1 and @i<=14
begin
set @n_chn=substring(@money_num, @i, 1)
if @n_chn<>'0' or (substring(@money_num,@i+1,1)<>'0' and @i not in(4, 8, 12, 14)) --转换阿拉伯数字为中文大写形式 51itr.net
set @money_chn=@money_chn+substring('零壹贰叁肆伍陆柒捌玖', @n_chn+1, 1)
if @n_chn<>'0' or @i in(4, 8, 12) --添加中文单位
set @money_chn=@money_chn+substring('仟佰拾亿仟佰拾万仟佰拾圆角分',@i,1)
set @i=@i+1
end
set @money_chn=replace(@money_chn, '亿万', '亿') --当金额为x亿零万时去掉万
if @money=0 set @money_chn='零圆整' --当金额为零时返回'零圆整'
if @n_chn='0' set @money_chn=@money_chn+'整' --当金额末尾为零分时以'整'结尾
return @money_chn --返回大写金额
end
go
--测试示例
---select dbo.fn_getformatmoney(88888)
⑹ mysql里,如何用SQL语句把数据中的小写字母改为大写字母
UCASE() 函数
UCASE() 函数把字段的值转换为大写。
具体语法参考:
-from shulanxt
这边已经详细的给出了这个函数的介绍了哈~希望能对楼主有所帮助~望采纳~
⑺ pl sql中如何设置关键字为大写
1.老老实实一个一个的输入
2.或者写完之后在编辑器里统一将小写替换为大写
3.选中关键字按ctrl+shift+u转换为大写,选中关键字按ctrl+shift+l转换为大写
在'查询分析器'中用替换功能,先ctrl+shift+u转换为大写,选择全替换即可.