t-sql 基本語法
新 增 、 修 改 、 刪 除 、 查 詢
insert 、update、delete、select
方式一
--新增一條記錄到 tb
insert into tb(name,tel) values('jia','18888888888')
--修改名稱,把jia 替換為 ajia
update tb set name = 'ajia' where name='jia'
--刪除所有記錄
delete * from tb
--查詢所以 tb 表的資料
select * form tb
方式二
--新增
insert into tb select 'a','123123123' union all
select 'b','154123123' union all
select 'c','146234234'
--修改表tb ,根據表 tb1
update tb set name = tb1.name from tb,tb1 where tb.tel = tb1.tel
--刪除沒有日誌
truncate table tb
主鍵自增 修改序列 關於自增id 你可能還不知道
1.mysql為什麼建議將自增列id設為主鍵?綜上而言 當我們使用自增列作為主鍵時,訪問效率是最高的。2.自增列id一定是連續的嗎?自增id是增長的 不一定連續。我們先來看下mysql 對自增值的儲存策略 innodb 引擎的自增值,其實是儲存在了記憶體裡,並且到了 mysql 8.0 版本後,才有...
主鍵自增 修改序列 資料分析 SQL主鍵知識要點
在關係型資料庫中,一張表中的每一行資料被稱為一條記錄。一條記錄就是由多個字段組成的。對於關係表,有個很重要的約束,就是任意兩條記錄不能重複。不能重複不是指兩條記錄不完全相同,而是指能夠通過某個字段唯一區分出不同的記錄,這個字元被稱為主鍵。對於主鍵的要求,最關鍵的一點是 記錄一旦插入到表中,主鍵最好不...
四 Sql server修改語句
這一節講解更新資料庫中表的資訊 以tb students info表為例 現在我要修改學生名joe的性別為woman sql 語句 update tb students infoset students woman where studentsname joe 查詢更改後的資料表 select fr...