sql常用指令 必須懂的命令

2021-07-06 04:13:16 字數 1613 閱讀 4190

學計算機的人都知道,在資料庫方面存在著各種各樣的資料庫 如mysql、oracle等 ,有些人可能說我只有會相應的資料庫的操作介面就可以了 ,壓根就用不到這些指令,那我想說的是 如果你要用到幾個以上的資料庫的時候 那你都去學該資料庫的操作介面??? 但是資料庫都是想通的 那寫基本的操作的** 是一樣的 只要我們學了這些想通的指令和操作 那麼只要會乙個資料庫的操作 那麼其他的資料庫的操作也就是很簡單的了。這就是我這篇文章的**

show databases : 檢視mysql中有多少個資料庫

use databasename : 使用指定資料庫

show tables : 檢視指定資料庫中有多少張表

select version() : 檢視資料庫的版本

select now()  : 檢視資料庫所在伺服器詳細時間

select current_date : 檢視日期

select current_time : 檢視時間

select user() : 檢視正在使用的使用者

事例:

quit:退出資料庫

exit:退出資料庫

commit:提交資料庫

create database databasename:建立資料庫(名字不能重複)

drop database databasename 刪除資料庫

建立表的簡單格式

create table tablename

tableelement tableelementtype[tableelementconstraint],

常用的資料庫字段型別:

char  int long double float varchar text datatime date 

varchar:相當於字元型別。但是長度需要確定varchar(length)

text:相當於字元型別,不需要確定字元的長度,但是預設的使用空間是255個字元

describe tablename :檢視表結構

alter table tablename add newtableelement tableelement  tableelementtype;給表新增指定元素

alter table tablename drop oldtableement;刪除表中指定的元素

alter  table  tablename change oldname newname newtype; 給表中的元素更換名字和屬性

alter table oldtablename rename newtablename; 更換名字

SQL常用指令

一 android插入方式 1.msqlitedatabase.execsql insertsql 如果insertsql裡面有雙引號單引號這些特殊字元會插入失敗 2.msqlitedatabase.execsql insertsql,mvalue 這種方式不會因為特殊字元而插入失敗 string ...

面試必須要懂的函式

define stl ifdef stl include include using namespace std char strcpy char dest,const char src char strncpy char dest,const char src,int count int strc...

find指令常用的命令

find path option print exec ok command 引數說明 find 根據下列規則判斷 path 和 expression,在命令列上第乙個 之前的部份為 path,之後的是 expression。如果 path 是空字串則使用目前路徑,如果 expression 是空字...