初學常用命令(二)

2021-08-07 01:57:15 字數 1048 閱讀 8761

插入多條記錄:

insert into student(stu_id,stu_name) select id,name from stu;

新增字段

alter table student add bith varchar2(10);

建立序列

create sequence seq_name

start with 1

increment by 

使用序列

insert into student values(seq_stuid.nextval,321602302,'小二','男',20,89,sysdate);

建立乙個表並從另乙個表中插入記錄

create table stu2 as select stu_id,stu_num from student;

建立一張表並從另一張表插入表結構

create table stu3 as select stu_id,stu_num from student where 1=2;

設定表字段為空

update student set stu_***='';

查詢為空的記錄

select * from student where stu_age is null;

查詢不為空的記錄

select  stu_name from student where stu_age is not null;

select firstname ||'.'|| lastname as 姓名

from xingming;

顯示固定行數記錄:

select firstname,lastname

from xingming

where rownum<2;

連線兩張表的記錄不去重複

select firstname ||':'|| lastname as 姓名1

from xingming1 union all

select firstname ||':'|| lastname as 姓名1

from xingming2

linux 常用命令(初學)

清理伺服器快取 echo 1 proc sys vm drop caches 條件檢視日誌 tail 500000 catalina.out grep o more 賦許可權 sudo chmod x usr share tomcat bin sh 檢視當前執行的tomcat的路徑 ps ef gr...

初學linux 常用命令

cd 切換路徑 絕對路徑 以根 目錄起頭 相對路徑 確認相對物件,物件就是當前目錄 ls 列出目錄中的檔案 a 顯示所有檔案,包括隱藏檔案 l 顯示詳細資訊 h 以方便人識別的方式顯示大小,一般 配合 l使用 mkdir 建立目錄 p 遞迴建立 pwd 顯示當前路徑 echo 顯示文字,如果是變數前...

常用命令二

ls a 顯示隱藏檔案 f 目錄後顯示斜槓 可執行檔案後顯示星號 mkdir 建立目錄 mkdir home alex dir1 在alex一目錄下建立dir1目錄 mkdir p 同時建立父目錄和子目錄 rmdir 刪除目錄,不能刪除包含其他檔案或目錄的目錄,需要先使用rm將其中的檔案刪除後,再刪...