Search
 
SCRIPT & CODE EXAMPLE
 

SQL

create table postgresql

CREATE TABLE table_name (
	column_name TYPE column_constraint,
	table_constraint table_constraint
) INHERITS existing_table_name;
Comment

Create postgres table

CREATE TABLE holiday_calender (
	hcl_id bigserial NOT NULL,
	hcl_country integer,
	hcl_company integer,
	hcl_date timestamp NULL,
	hcl_description varchar(500) NULL,	
	hcl_active int4 NOT NULL,
	CONSTRAINT holiday_calender_pkey PRIMARY KEY (hcl_id)
);
Comment

create table database in psql

virtual_pets=# CREATE TABLE communities (id SERIAL PRIMARY KEY, name varchar, description varchar);
CREATE TABLE
Comment

PREVIOUS NEXT
Code Example
Sql :: import data from excel to sql server automatically 
Sql :: SQL sort on a calculation 
Sql :: how to delete data from database in php 
Sql :: max in postgresql 
Sql :: mysql select all columns and specific fields as 
Sql :: sqlite describe table 
Sql :: sql script to delete duplicate records in a table 
Sql :: create database in sql 
Sql :: id sql 
Sql :: check if two tables are identical sql 
Sql :: guid string to binary better 
Sql :: add colum in sql 
Csharp :: minimize button c# 
Csharp :: get appdata file path c# 
Csharp :: c# app path 
Csharp :: c# get user directory 
Csharp :: unity gameobject teleporting 
Csharp :: csgo throw last grenade bind 
Csharp :: fade text unity 
Csharp :: movement script c# 
Csharp :: c# AllowSynchronousIO to true 
Csharp :: unity 3d camera rotate up and down 
Csharp :: c# initialize dictionary 
Csharp :: c# convert dictionary to anonymous object 
Csharp :: unity pause animator 
Csharp :: Error inflating class android.support.constraint.ConstraintLayout 
Csharp :: random value in array c# 
Csharp :: c# run c# code from string 
Csharp :: c# right click event 
Csharp :: how to draw text in monogame 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =