資料庫初步

2021-05-27 20:48:39 字數 738 閱讀 5060

建立乙個表people,id列設為主鍵,且自動遞增

在mysql中,

create people (id int not null primary key auto_increment, name varchar(20), ***varchar(20))

在sql server中

create table people(

id int not null identity,

name varchar(20),

*** varchar(20)

)

ms sql 使用 identity 關鍵字來執行 auto-increment 任務。預設地,identity 的開始值是 1,每條新紀錄遞增 1。如果以 20 起始且遞增 10,要把 identity 改為 identity(20,10)

在mysql中,要建立乙個使用者並賦給他某個資料庫的許可權,可以使用

grant

許可權on

資料庫.* to

使用者名稱@

登入主機

identified by "密碼"

例如grant

* on hntest

.* to

username@localhost identified by password

表示賦予使用者username對於hntest資料庫的所有許可權,使用者的密碼是password

SQL Server資料庫初步

今天安裝了sql server 2008,然後又複習了一些基本查詢語句。建立資料庫 create database hero 建立表 use hero 制定資料庫 gocreate table heros heroid int 編號 heroname varchar 50 姓名 nickname v...

資料庫初步學習

mysql資料庫基本操作 前段時間自學了資料庫的基本操作,寫點總結撒 一.資料庫檔案操作 1.建立資料庫檔案 create database 資料庫名稱 2.刪除資料庫檔案 drop database 資料庫名稱 3.顯示資料庫檔案 show databases 4.開啟資料庫檔案 use 資料庫名...

資料庫學習初步學習

select from web insert into web name,url,alexa,country values 13,cn insert into web name,url,alexa,country values 菜鳥教程 4689,cn insert into web name,ur...