摘要:
momo@ubuntu:~/user/txt$ cat test.txt1 chen nihao2 chen hello3 li nimenhao4 he dajiahao5 li nimenhaomomo@ubuntu:~/user/txt$ sort -k2,2 -u test.txt1 che 阅读全文
摘要:
1.查看所有用户: select * from dba_users; select * from all_users; select * from user_users; 2.查看用户或角色系统权限(直接赋值给用户或角色的系统权限): select * from dba_sys_privs; sel 阅读全文
摘要:
for j in range(1,len(arr)): #从list第二个元素开始 key=arr[j] #储存将要进行插入排序的元素数值 index=j #储存将要进行插入排序的元素的索引 while index>0 and arr[index-1]>key: #执行插入排序的判断条件 arr[i 阅读全文