前言:適用於sql server2012
1、開啟sql server 2012;
2、新建資料庫----》新建表
3、利用基本語句插入資料等操作
3.1 create語句
建立乙個新錶:
create table student;
3.2 insert語句
插入資料:
insert into student([屬性1],[屬性2],...) values ('值1','值2',...);
3.3 select語句
查詢:
select * from student; 查詢所有資訊
select * from student where 條件; 按條件查詢
3.4 update語句
更新:
update student set 屬性名=值 where 條件;
注意:當新增屬性時也可以用此語句增加資料。
具體詳細的語法可參見
資料庫基本語句(1)
1。r 查詢 查詢所有資料庫名稱 show databases 檢視其中乙個 mysql 資料庫的建立語句 show create database mysql 2。c 建立 建立乙個資料庫sl create database sl create datebase if not exisit sl ...
資料庫基本語句
資料庫很久沒用,忘的差不多了,練習一下。環境 mysql 表1表名 test1 屬性 id name,bookid 表二表名 book 屬性 id,name 1.建立資料庫 create database study1 2.建立表 create table test1 id int 11 not n...
資料庫基本語句
ddl 資料庫或者表的結構 建立 create database table dbname tablename 修改 alter table tablename add modify change drop 列名 型別 約束條件 刪除 drop database table dbname table...