- 博客(9)
- 收藏
- 关注
原创 高斯db查询字段长度和位数
select octet_length(‘中国’)–6字节,高斯里面一个汉字为三个字节select length(‘中国’) --2,位数
2021-04-26 16:32:03
3754
原创 gaussdb去除字段中的空格
方法一:select replace(字段,’ ‘,’’) from table;方法二:select substr(字段,开始位置,空格开始前结束位置)||substr(字段,空格开始后位置,结束位置)from table;
2021-04-25 14:27:12
898
原创 PG库查看表注释
1、查询表名和表注释select relname as tabname,cast(obj_description(relfilenode,‘pg_class’) as varchar) as comment from pg_class cwhere relname =‘table_name’ ;2、查询字段名、字段类型及字段长度和字段注释select a.attnum,a.attname,concat_ws(’’,t.typname,SUBSTRING(format_type(a.atttyp
2021-04-21 16:14:40
6159
原创 sql练习随笔
1 创建表加注释:create table stu_info ( sno number(3), sname varchar2(30), sex varchar2(4));comment on column stu_info.sex is '性别';comment on column stu_info.sname is '姓名';comment on column stu_info.sno is 'ID';insert into stu_info(sno, s...
2021-04-02 11:00:23
518
原创 让python pip使用国内镜像
让python pip使用国内镜像国内源:清华:https://pypi.tuna.tsinghua.edu.cn/simple阿里云:http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/华中理工大学:http://pypi.hustunique.com/山东理工大学:http://pypi.sdutlinux.org/豆瓣:http://pypi.douban.com/sim
2020-11-06 22:21:57
169
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人