文章目录 003、Longest Substring Without Repeating Characters个人解题官方解题扩展 003、Longest Substring Without Repeating Characters
无重复字符的最长子串 Given a string s, find the length of the longest substring without repeating characters. 给定一个字符…
表结构的约束和维护
修改表结构
(1)添加列
(2)删除列
(3)修改列alter table 表名 add 新列名 数据类型给员工表添加一列邮箱
alter table People add PeopleMail varchar(200)删除列
alter table People drop column PeopleMain修改列
alter table 表名 alter column 列名 数据…