摘要:
import getpass pwd = getpass.getpass("请输入密码: ") print(pwd) 阅读全文
posted @ 2019-12-19 14:56
zl666张良
阅读(120)
评论(0)
推荐(0)
摘要:
1.创建新表 create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..) 2.根据已有的表创建新表 A:create table tab_new like tab_old (使用旧表创建新表) 阅读全文
posted @ 2019-12-19 10:09
zl666张良
阅读(124)
评论(0)
推荐(0)
摘要:
1.创建新表 create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..) 2.根据已有的表创建新表 A:create table tab_new like tab_old (使用旧表创建新表) 阅读全文
posted @ 2019-12-19 10:07
zl666张良
阅读(1338)
评论(0)
推荐(0)