摘要: alter table table_name add columns (c_time string comment '当前时间'); -- 正确,添加在最后 alter table table_name change c_time c_time string after address ; -- 正 阅读全文
posted @ 2021-04-23 15:20 swordspoet 阅读(1378) 评论(0) 推荐(0) 编辑
摘要: 91. 解码方法 Difficulty: 中等 一条包含字母 A-Z 的消息通过以下映射进行了 编码 : 'A' -> 1 'B' -> 2 ... 'Z' -> 26 要 解码 已编码的消息,所有数字必须基于上述映射的方法,反向映射回字母(可能有多种方法)。例如,"11106" 可以映射为: "A 阅读全文
posted @ 2021-04-23 01:09 swordspoet 阅读(51) 评论(0) 推荐(0) 编辑