Microsoft SQL Server
Opeenvolgingen
Zoeken…
Maak een reeks
CREATE SEQUENCE [dbo].[CustomersSeq]
AS INT
START WITH 10001
INCREMENT BY 1
MINVALUE -1;
Gebruik Volgorde in tabel
CREATE TABLE [dbo].[Customers]
(
CustomerID INT DEFAULT (NEXT VALUE FOR [dbo].[CustomersSeq]) NOT NULL,
CustomerName VARCHAR(100),
);
Invoegen in tabel met reeks
INSERT INTO [dbo].[Customers]
([CustomerName])
VALUES
('Jerry'),
('Gorge')
SELECT * FROM [dbo].[Customers]
resultaten
Klanten ID | Klantnaam |
---|---|
10001 | Jerry |
10002 | Gorge |
Verwijderen uit & Nieuw invoegen
DELETE FROM [dbo].[Customers]
WHERE CustomerName = 'Gorge';
INSERT INTO [dbo].[Customers]
([CustomerName])
VALUES ('George')
SELECT * FROM [dbo].[Customers]
resultaten
Klanten ID | Klantnaam |
---|---|
10001 | Jerry |
10003 | George |
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow