Search
 
SCRIPT & CODE EXAMPLE
 

SQL

create table sql server auto increment primary key


/* mysql server */
CREATE TABLE persons (
    id int NOT NULL AUTO_INCREMENT,
    colour varchar(191) NOT NULL,
    created datetime, 
    modifed datetime
);

/* sql server IDENTITY*/
CREATE TABLE persons (
    id int IDENTITY(1,1) PRIMARY KEY,
    colour varchar(191) NOT NULL,
    created datetime, 
    modifed datetime
);

INSERT INTO persons (colour, created, modified)
VALUES ('red','2022-08-05', '2022-08-05'),
VALUES ('green','2022-08-05', '2022-08-05'),
VALUES ('blue','2022-08-05', '2022-08-05');
Comment

create table with primary key auto increment in sql

CREATE TABLE table_name (
    id INT NOT NULL IDENTITY(1, 1),
    name NVARCHAR (100) NULL,
    school NVARCHAR (100) NULL,
    PRIMARY KEY (ID)
);
Comment

SQL Auto Increment Primary Key - SQL Server

-- using IDENTITY(x, y) to auto increment the value
-- x -> start value, y -> steps to increase
CREATE TABLE Colleges (
  college_id INT IDENTITY(1,1),
  college_code VARCHAR(20) NOT NULL,
  college_name VARCHAR(50),
  CONSTRAINT CollegePK PRIMARY KEY (college_id)
);

-- inserting record without college_id
INSERT INTO Colleges(college_code, college_name)
VALUES ("ARD13", "Star Public School");
Comment

add primary key with auto increment sql server

/*
--Syntax for MySQL
MySQL uses the AUTO_INCREMENT keyword to perform an auto-increment feature.
By default, the starting value for AUTO_INCREMENT is 1, and it will increment by 1 for each new record.
*/
CREATE TABLE Persons (
    Personid int NOT NULL AUTO_INCREMENT,
    LastName varchar(255) NOT NULL,
    FirstName varchar(255),
    Age int,
    PRIMARY KEY (Personid)
);

/* Syntax for SQL Server: */
CREATE TABLE Persons (
    Personid int IDENTITY(1,1) PRIMARY KEY,
    LastName varchar(255) NOT NULL,
    FirstName varchar(255),
    Age int
);

/* Syntax for Oracle: */
CREATE SEQUENCE seq_person
MINVALUE 1
START WITH 1
INCREMENT BY 1
CACHE 10;
Comment

sql auto_increment syntax

CREATE TABLE [dbo].[MY_TABLE] (
    [ID] INT NOT NULL IDENTITY(1, 1),
    [NAME]          NVARCHAR (100) NULL,
    [SCHOOL]             NVARCHAR (100) NULL,
    PRIMARY KEY (ID)
);
Comment

sql create tabel with primary key auto_increment code

CREATE TABLE books (
  id              INT           NOT NULL    IDENTITY    PRIMARY KEY,
  title           VARCHAR(100)  NOT NULL,
  primary_author  VARCHAR(100),
);
Comment

PREVIOUS NEXT
Code Example
Sql :: how to get the ddl for datafile in oracle tablespace 
Sql :: truncate left characters mysql 
Sql :: dbms_output.put_line 
Sql :: how to delete a column in sql 
Sql :: sqlite create index 
Sql :: helptext in sql 
Sql :: Failed to connect to localhost:1433 - self signed certificate 
Sql :: creating a view sql 
Sql :: sql get number of days between two dates 
Sql :: mysql search like order by best match 
Sql :: remove all records from table mysql 
Sql :: asp.net core with postgresql deploy on ubuntu 
Sql :: how to find the most occuring in SQL 
Sql :: import .sql into postgres db command 
Sql :: oracle create program if no exists 
Sql :: alter table in mysql 
Sql :: return insert results in POSTGRESQL 
Sql :: oracle ora-00054 find 
Sql :: psql client write to bash variable 
Sql :: oracle explain plan 
Sql :: postgresql insert select 
Sql :: alter table name 
Sql :: MySQL insert into examble 
Sql :: mysql add fields 
Sql :: epoch time converter in snowflake 
Sql :: delete a record from a table sqlite3 
Sql :: create unique index postgres 
Sql :: mssql find deadlocks 
Sql :: where date in datetime mysql 
Sql :: Get Minimum from multiple columns sql 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =