关于SqlServer数据表操作

–修改表字段长度
alter table tbl_count_user_ref alter column countname nvarchar(500);
新增字段
alter table 表名 add 字段名 数据类型 default 默认值
说明:数据类型如,varchar(50)
alter table bank_sokect_info add deptno varchar(8);

如何删除表中字段
alter table 表名 drop column 字段名

substring(fullname,9,100),substring(catalogcode,9,100),substring(parentcode,9,100)
mssql中截取字符串可以用left,right,substring函数。
left,是从字符左边开始截取,如:截取abcdefg字符串中的前三个字符:
1 select left(‘abcdefg’,3);
其中3为截取的长度。
rigth是从字符右边开始截取,如截取abcdefg字符串中的后三个字符:
1 select right(‘abcdefg’,3);
其中3为截取的长度。
substring,是从任意位置截取,如截取abcdefg字符串中的第二到第四个字符:
1 select substring(‘abcdefg’,2,3);
其中2为开始截取的位数,3为截取的长度。

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐