摘要:
单表查询 一 以此表为例 create table emp( id int not null unique auto_increment, name varchar(20) not null, sex enum('male','female') not null default 'male', #大 阅读全文
摘要:
一 异常及异常处理 1.什么是异常:程序在运行的过程中出现了不可预知的错误,如果没有对应的处理机制和处理不当的话,会造成程序无法正常运行下去。 2.异常的结构: #1.异常类型:NameError #2异常信息: name 'name' is not defined #3异常位置: File "E: 阅读全文