select*from job where regexp_like(name, '^[0-9]+')
2、MySql索引相关
1 2 3 4 5 6 7 8 9 10
# 查询表索引 show index from table_name;
# 创建索引 alter table table_name addunique index (column_name); # 追加索引之前需要删除旧的索引,使用如下方式重新创建,否则索引不生效 alter table table_name addunique index (column_old_index, column_new_index);
# 删除索引 alter table table_name drop index column_name;