使用MYSQL -I命令,查看MYSQL命令的参数,其中对--auto-rehash参数的说明如下:--auto-rehash Enable automatic rehashing. One doesn&#39t need to use &#39rehash&#39to get table and field completion, but startup and reconnecting may take a longer time. Disable with --disable-auto-rehash. 网上也找了一些资料,说是打开MYSQL的
自动补全功能,类似于LINUX的TAB键补全功能。但如下使用该参数后,输入SQL命令,中途按TAB健,并未出现自动补全的效果,不知道如何 *** 作: [sql] C:\Users\qxlmysql -u root --auto-rehash Welcome to the MySQL monitor. Commands end with or \g. Your MySQL connection id is 29 Server version: 5.1.28-rc-community MySQL Community Server (GPL) Type &#39help&#39or &#39\h&#39for help. Type &#39\c&#39to clear the buffer. mysql use test Database changed mysql select * from newnamPL/SQL有自动
提示,例如输入crea 的时候,会出现一个下拉单 create 但是没有自动补全的方法哦~~会提示,没补全 新建一个SEQ: create sequence seq_题主是不是没有用完全限定的表名才会这样,举个例子吧,
select ID
from product;
这样子字段ID是不会有代码提示补全的;
只有写:
select product.ID
from product
才会有代码提示~
又或者是软件选项的问题,打开“工具”--“选项”--“常规”--“代码附加选项”都打上勾看是否能解决
评论列表(0条)