摘要:
创建名为测试的数据库 create anyun ceshi; 查看创建的数据库 show anyun; 使用此数据库 use ceshi; 创建一个表 create table world( id int not null auto_increment, name varchar(100) not 阅读全文
摘要:
%:匹配零个及多个任意字符; _:与任意单字符匹配; []:匹配一个范围; [^]:排除一个范围Symbol Meaning like '5[%]' 5% like '[_]n' _n like '[a-cdf]' a, b, c, d, or f like '[-acdf]' -, a, c, d 阅读全文