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 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 :: random record using order by rand() mysql 
Sql :: node-pre-gyp ERR! Tried to download(403): https://mapbox-node-binary.s3.amazonaws.com/sqlite3/v3.1.13/node-v72-win32-x64.tar.gz 
Sql :: mysql does sentence contain word 
Sql :: To change the database owner in SQL server 
Sql :: how to drop a database in sql server when it is in use 
Sql :: oracle invalid table name 
Sql :: postgres list all stored procedures query 
Sql :: clear a table in mysql 
Sql :: grant all privileges mysql 
Sql :: linebreak sql 
Sql :: drop foreign key mysql 
Sql :: create table sqlite 
Sql :: postgres group by 10 minute intervals 
Sql :: insert data from another table 
Sql :: postgresql change default value 
Sql :: delete top N rows in sql 
Sql :: postgresql create schema in specific database 
Sql :: get name of day in sql 
Sql :: postgresql cast 
Sql :: drop table with constraints 
Sql :: how to print mysql query of codeigniter query builder 
Sql :: mysql error 1251 
Sql :: count characters of string mysql 
Sql :: display 2 numbers after decimal mysql 
Sql :: how to delete user in mysql 
Sql :: run sql command line download for windows 10 
Sql :: phpmyadmin change password 
Sql :: Mysql Create table with foreign keys. 
Sql :: sql blank vs null 
Sql :: mysql to get column name in database 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =