Search
 
SCRIPT & CODE EXAMPLE
 

SQL

mysql DDL

#建立一個名稱為t_test,字符集為utf8,儲存引擎為InnoDB,字元校驗集為utf8_general_ci的表:
mysql> CREATE TABLE t_test (
id INT NOT NULL AUTO_INCREMENT,
name VARCHAR(50),
PRIMARY KEY(id)
) ENGINE = InnoDB DEFAUL CHARSET = UTF8 COLLATE = utf8_general_ci;
Comment

PREVIOUS NEXT
Code Example
Sql :: selecting all columns from table sql database 
Sql :: how to add amount between date in sql 
Sql :: column with prefix in sql 
Sql :: sql server concat null 
Sql :: import database from sql file 
Sql :: truncate in oracle sql 
Sql :: create procedure sql 
Sql :: sqlite select regex 
Sql :: test connection to sql server 
Sql :: with transaction.atomic(): 
Sql :: cardinality example sql 
Sql :: not in sql 
Sql :: how to join result table in mysql 
Sql :: select where sql 
Sql :: recourse record format 
Sql :: break too long line yaml 
Sql :: use mysql in java program 
Sql :: sql delete where x or y or z 
Sql :: hierarchal database table 
Sql :: mysql remote connection macos 
Sql :: sql_inner_join 
Sql :: mysql find char in string 
Sql :: prepared statement mysql java delete selected rows 
Sql :: code to move ietms from one table to another myswl 
Sql :: mysql collation for case sensitive 
Sql :: column value should show as latest using sql query 
Sql :: postgres row expiration 
Sql :: setval postgres example table id 
Sql :: what is constraints in dbms 
Sql :: kill thread 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =