Search
 
SCRIPT & CODE EXAMPLE
 

SQL

employee sample data mysql

CREATE TABLE employees (
    emp_no      INT             NOT NULL,  -- UNSIGNED AUTO_INCREMENT??
    birth_date  DATE            NOT NULL,
    first_name  VARCHAR(14)     NOT NULL,
    last_name   VARCHAR(16)     NOT NULL,
    gender      ENUM ('M','F')  NOT NULL,  -- Enumeration of either 'M' or 'F'  
    hire_date   DATE            NOT NULL,
    PRIMARY KEY (emp_no)                   -- Index built automatically on primary-key column
                                           -- INDEX (first_name)
                                           -- INDEX (last_name)
);
Comment

PREVIOUS NEXT
Code Example
Sql :: sql query to delete row by id 
Sql :: laravel How to find the password of mysql on desktop docker in laravel 
Sql :: hibernate xml property MySQL url, username and password 
Sql :: cast find duration in sql 
Sql :: showing all columns in an sqlite table 
Sql :: Object Information 
Sql :: postgres grep entire database 
Sql :: sql update table one column 
Sql :: date to month name in mysql query 
Sql :: dbname+tablename 
Sql :: flashback in bigquery 
Sql :: sqlite ignore index 
Sql :: datatype for phone number in sql 
Sql :: select from 3 tables one is empty 
Sql :: SQL Manipulação de Tabelas Constraint 
Sql :: python and mysql connectivity 
Sql :: export data from excel to sql server 
Sql :: % Wildcard in SQL 
Sql :: max in postgresql 
Sql :: backup table mssql 
Sql :: sql into vs insert into 
Sql :: how to subquey to do not load in live database in 
Csharp :: c# mark as deprecated 
Csharp :: aabb collision 
Csharp :: how to convert string to guid c# 
Csharp :: make winforms full-screen c# 
Csharp :: c# preprocessor if not 
Csharp :: c# random enum 
Csharp :: how to disable a gameObject unity c# 
Csharp :: c# executable directory 
ADD CONTENT
Topic
Content
Source link
Name
8+8 =