SQL資料庫的基本操作

2021-07-04 14:38:03 字數 3041 閱讀 9989

一丶基本命令列操作

1、顯示當前資料庫伺服器中的資料庫列表:mysql> show databases;

2、建立資料庫:mysql> create database 資料庫名;

3、建立資料表:mysql> use 庫名;mysql> create table 表名 (欄位名 varchar(20), 欄位名 char(1));

4、刪除資料庫:mysql> drop database 庫名;

5、刪除資料表:mysql> drop table 表名;

6、將表中記錄清空:mysql> delete from 表名;

7、往表中插入記錄:mysql> insert into 表名 values ("yangyi","m");

8、更新表中資料:mysql> update 表名 set 欄位名1='a',欄位名2='b' ;

9、用文字方式將資料裝入資料表中:mysql> load data local infile "d:/mysql.txt" into table 表名;

10、匯入.sql檔案命令:mysql> use 資料庫名;mysql> source "d:/mysql.sql";

11、命令列修改root密碼:mysql> update mysql.user set password=password('新密碼') where user='root';mysql> flush privileges;

12.修改密碼的三種方法:mysql>update user set password=password('123456') where user='yangyi';mysql>flush privileges;mysql>set password for 'yangyi'=password('123456');mysql>grant usage on *.* to 'yangyi' identified by '123456';

二丶資料庫基本操作

1、建立資料庫

命令:create database 《資料庫名》        例如:建立乙個名為db的資料庫mysql> create database db;

2、顯示所有的資料庫

命令:show databases (注意:最後有個s)mysql> show databases;

3、刪除資料庫

命令:drop database 《資料庫名》        例如:刪除名為 tb的資料庫mysql> drop database db;

4、連線資料庫

5、當前選擇(連線)的資料庫mysql> select database();

6、當前資料庫包含的表資訊:mysql> show tables; (注意:最後有個s)

三丶表操作

1、建表

命令:create table 《表名》 ( 《欄位名1> 《型別1> [,..《欄位名n> 《型別n>]);

mysql> create table myclass(

> id int(4) not null primary key auto_increment,

> name char(20) not null,

> *** int(4) not null default ''0'',

> degree double(16,2));

2、獲取表結構

命令: desc 表名,或者show columns from 表名

mysql>describe myclass;

mysql> desc myclass;

mysql> show columns from myclass;

3、插入資料

命令:insert into 《表名》 [( 《欄位名1>[,..《欄位名n > ])] values ( 值1 )[, ( 值n )]

例如,往表 myclass中插入二條記錄, 這二條記錄表示:編號為1的名為tom的成績為96.45, 編號為2 的名為joan 的成績為82.99,編號為3 的名為wang 的成績為96.5.

mysql> insert into myclass values(1,'tom',96.45),(2,'joan',82.99), (2,'wang', 96.59);

4、查詢表中的資料

1)、查詢所有行

命令: select 《欄位1,欄位2,...> from < 表名 > where < 表示式 >

例如:檢視表 myclass 中所有資料        mysql> select * from myclass;

2)、查詢前幾行資料

例如:檢視表 myclass 中前2行資料

mysql> select * from myclass order by id limit 0,2;

5、刪除表中資料

命令:delete from 表名 where 表示式

例如:刪除表 myclass中編號為1 的記錄

mysql> delete from myclass where id=1;

6、修改表中資料

命令:update 表名 set 字段=新值,… where 條件

mysql> update myclass set name=''mary'' where id=1;

7、在表中增加字段

命令:alter table 表名 add 字段 型別 其他;

例如:在表myclass中新增了乙個欄位passtest,型別為int(4),預設值為0

mysql> alter table myclass add passtest int(4) default ''0''

8、更改表名

命令:rename table 原表名 to 新錶名;

例如:在表myclass名字更改為youclass

mysql> rename table myclass to youclass;

9、更改字段內容

update 表名 set 欄位名 = 新內容;

update 表名 set 欄位名 = replace(欄位名,''舊內容'',''新內容'');    

SQL資料庫基本操作

1 建立表 create create table dba test 建立表,表名為dba test col1 number,col2 varchar2 10 第一列預設值是0 第二列不准許有空值 第一列預設值是0 第二列不准許有空值 2 檢索操作 select select 1 from 2 其中...

SQL資料庫的基本操作

新建乙個類,繼承sqliteopenhelper。public class mydatabasehelp extends sqliteopenhelper寫乙個建構函式 private context context 上下文物件 string name 資料庫名稱 sqlitedatabase.cu...

SQL資料庫基本操作學習

資料查詢操作 1 讀取最新的10條資料 select top 10 from database dbo tablename order by columnname desc 2 刪除資料表,刪除資料較慢,可以恢復 delete from basename dbo tablename 3 刪除資料表的...