摘要:
select REPLACE(full_name,substring(full_name,2,len(full_name)),'**') from subject --update subject set full_name=REPLACE(full_name,substring(full_name 阅读全文
摘要:
一下语句都是基于 mysql数据库 查询是否使用索引 explain select * FROM t_table1; 结果列的含义: table:此次查询操作是关联哪张数据表 type:连接查询操作类型,一般根据索引查询的话为const,如果没有索引,则遍历所有数据那么为All(此种方式效率极低) 阅读全文