標籤:style blog 使用 ar 資料 sp div c on
關係型:使用一個關係,來表示實體資訊和實體之間的聯絡
關係:就是一個二維表,有行有列的表格
建立資料庫:create database 庫名;容錯級建立:create database if not exists 庫名;
建立帶有系統保留字的資料庫時,用庫名包裹方法(用反引號將系統保留字包裹起來)
指定字元集 default charset =gbk;
刪除資料庫drop database if exists庫名;
建立表:create table 表名(欄位,屬性,關鍵字primary key);
修改表的結構:alter table 表名 add 欄位 屬性;
修改屬性:alter table 表名 modify 欄位 屬性;
向表中添加資料:insert into 表名(屬性)values(值);屬性與值一一對應
如果其他表的表結構或者與之對應的欄位類型完全一致,這時可以寫成insert into 表名 select*from其他表
如果其他表欄位並不一致,可以取部分欄位內容插入,但要求類型對應
insert into student2(student_id,student_name) select student_id,studentname from student_info;
查詢資料 select*或欄位列表 from 表名 where 條件
select 1+1 as 編號,GETDATE() as 日期,NEWID() as 編號;
查詢並分組
select F_money,COUNT(*),getdate() as shijian from Temployee group by F_money having COUNT(*)>1 ;select F_money,count(*) from Temployee where F_age>22 GROUP by F_money ;//group by在where的後面,在having語句的前面,having是對分組後的資訊過濾,能用的列是和select中是一樣的
條件查詢
select top 3*from Temployee order by F_money asc;
修改資料:update 表名 set 欄位名=新值,。。。where 條件 。。。
刪除資料:delete from 表名 where 。。order by。。。limit
sqlserver基本操作