oracle資料庫命令

2021-07-26 04:42:59 字數 1120 閱讀 9548

oracle資料庫命令

1.資料庫啟動,登陸資料庫     

sqlplus / as sysdba

2.開啟資料庫                           startup

3.建立表                                   create table team(id int,name varchar(50),*** varchar(10));

4.刪除表                                   drop table team

5.插入                                       insert into team values(1,『川普』,『男』);

6.刪除                                       delete team where name=『川普』;

7.修改                                       update team set name=『歐巴馬』 where id=1;

增加一列                                alter table team add class int;

8.檢視表                                    select*from team;

9.檢視符合條件的                      select*from team where ***=『男』;

10.關閉資料庫                           shutdown immediate

11.退出資料庫                           exit

Oracle資料庫命令介紹

1 設定當前 session 是否對修改的資料進行自動提交 sql set auto commit 2 在用 start 命令執行乙個 sql 指令碼時,是否顯示指令碼中正在執行的 sql 語句 sql set echo 3 是否顯示當前 sql 語句查詢或修改的行數 sql set feed ba...

資料庫命令

mysql常用命令 show databases use manage create table user name varchar 20 password varchar 20 age int describe user insert into user values admin admin 10...

Mysql資料庫命令

create database mydata use mydata create table dept deptno int primary key,dname varchar 14 loc varchar 13 create table emp empno int primary key,enam...