摘要:
unsigned(无符号):顾名思义,使用它时不能带任何符号zerofill(填充0):默认空格位置用0来填充代码:create table student(id int primary key auto_increment,age int unsigned,tell int zerofill)in 阅读全文
摘要:
一、什么是模糊查询模糊查询是根据一定的模式匹配规则,查找与指定条件相似或相符的数据。二、模糊查询实操通配符查询1、% 表示任意0个或多个字符形式一: select 查询字段 from 表名 where 字段 like ’ %’代码演示 查询结果 形式二:select 查询字段 from 表名 whe 阅读全文