sql server 索引的使用 --创建索引create index(索引关键字) indexName(索引名) on userInfo(userName,userAge) create index indexName on userInfo(userName,userAge) --查看索引 sp_helpindex userInfo --创建唯一性索引 create unique index indexAge on userInfo(userAge) --删除索引 drop index i
有时候会出现索引问题,显示scanning files to index
解决方法:
in pycharm, go to the “File” on the left top, then select “invalidate caches/restart…”, and press “invalidate and restart”.
然后等它自己重启,会自己indexing,过五分钟左右就好了。
以上这篇解决pycharm运行程序出现卡住scanning files to index索引的问题就