sqlite與sqlserver區別

來源:互聯網
上載者:User

標籤:

1、查詢時把兩個欄位拼接在一起

--sqlserver--select Filed1+‘@‘+Filed2 from table--sqlite--select Filed1||‘@‘||Filed2 from table


2、使用指令碼添加欄位,更改欄位類型,刪除欄位

--------添加欄位------------sqlserver--IF not exists     (select * from syscolumns where id=object_id(‘表名‘) and name=‘欄位‘)BEGIN    alter table 表名 add 欄位 intend--sqlite--alter table 表名 add 欄位 int--------更改欄位類型------------sqlserver--alter table table alter column filed nvarchar(256)--sqlite中需要把舊錶重新命名,建立新表(這個時候更改欄位類型),然後再把資料匯入到新表中,刪除舊錶--ALTER TABLE  表名  RENAME TO "重新命名"Create TABLE "表名"([Id] bigint NOT NULL,[Name] nvarchar(16) , Primary Key(Id)   )Insert Into ‘重新命名‘ ([Id],[Name])  Select [Id],[Name] From MAIN.[‘表名‘]Drop Table MAIN.[重新命名表]

 3、取前幾條資料

  

--sqlsever--SELECT TOP 10 * FROM table ORDER BY filed DESC--sqlite--select * from table limit 0,10

4、判斷插入資料
  

  

--sqlserver--IF NOT EXISTS (select * from table where FID=6)  BEGIN insert into table(FName,FIsDelete) select ‘t‘,0 END--sqlite--insert into table(FName,FIsDelete)select ‘tt‘,0 where not exists(select * from table where FID=6)

 

sqlite與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.