SQL语句
Posted 繁星下的晴空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL语句相关的知识,希望对你有一定的参考价值。
创建数据库
create database auth;
创建表
create table table_name ( id tinying unsigned not null auto_increment, name varchar(60) not null score tinyiny unsigned not null default 0, primary key(id) engine=Innodb default charset=utf8;
create table users (user_name char(20) not null, user_passwd char(30) default"primary key (user_name)");
// 在auth 库中,创建名 users 的表 表内有两个字段为 (user_name 最多20个字节 不能为空, user_passwd 最多30个字节)
默认为空,索引关键字 user_name)
insert into users(user_name,user_passwd)values(‘zhangsan‘,‘123456‘);
//在users表的(字段 user_name,字段 user_passwd)中添加(‘zhangsan‘,调用函数‘123456‘);
insert into users values(‘lisi‘,‘123456‘); //字段内容可省略
create table IT_salary (岗位类别 char(20) not null, 姓名 char(20) not null, 年龄 int, 员工 int not null, 学历 char(6), 年限 int, 薪资 int not null, primary key (员工));
//int 数字类型, char 字符串类型 , not null 不能为空, char()指定最多字节个数, primary key 指定索引字段
以上是关于SQL语句的主要内容,如果未能解决你的问题,请参考以下文章