This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SQL中的单记录函数 | |
| 1.ASCII | |
| 返回与指定的字符对应的十进制数; | |
| SQL> select ascii('A') A,ascii('a') a,ascii('0') zero,ascii(' ') space from dual; | |
| A A ZERO SPACE | |
| --------- --------- --------- --------- | |
| 65 97 48 32 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name UESTC自动填充密码插件 | |
| // @namespace http://zhouchao.me/ | |
| // @version 1.1 | |
| // @description 还在为每次都要输入信息门户账号密码而烦恼?本插件能解放你,让你有更多的时间享受生活的乐趣。 | |
| // @author Chace | |
| // @match https://uis.uestc.edu.cn/amserver/UI/Login?goto=* | |
| // @grant none | |
| // ==/UserScript== |