sqlserver基本操作

來源:互聯網
上載者:User

標籤: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基本操作

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.