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

PREVIOUS NEXT
Code Example
Sql :: date_part mysql 
Sql :: how to update random rows in sql 
Sql :: SQL Server rename foreign key constraint 
Sql :: snowflake datetrunc month 
Sql :: identify number of rows in sql 
Sql :: postgres float to int 
Sql :: how to assign date field for table in mysql 
Sql :: oracle create table auto generated primary key 
Sql :: login to mysql database 
Sql :: postgresql insert column 
Sql :: mysql delete all except 
Sql :: How to drop a foreign key constraint in mysql ? 
Sql :: insert current date sql 
Sql :: sql select into 
Sql :: sql server output parameter 
Sql :: not exists mysql 
Sql :: sql current timestamp table 
Sql :: show table postgres command 
Sql :: mysql between 
Sql :: space not removing from column in sql 
Sql :: mysql copy table to another table 
Sql :: laravel jwt 
Sql :: select random sql 
Sql :: sql datetime format dd/mm/yyyy hh:mm am/pm 
Sql :: sql declare variable 
Sql :: delete database mysql command 
Sql :: return result of function in postgresql 
Sql :: sql end of month 
Sql :: list all tables in postgres 
Sql :: where with multiple conditions in mongodb 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =