修改数据库表结构: 用户名唯一性约束; 向用户登录表添加四个测试用户信息
This commit is contained in:
parent
7019eec1d5
commit
144569acac
|
@ -1,7 +1,7 @@
|
||||||
-- 创建用户登录表
|
-- 创建用户登录表
|
||||||
create table if not exists login_users (
|
create table if not exists login_users (
|
||||||
userid integer primary key,
|
userid integer primary key,
|
||||||
name varchar(50),
|
name varchar(50) unique, -- 用户名唯一
|
||||||
password varchar(50)
|
password varchar(50)
|
||||||
);
|
);
|
||||||
-- 创建温湿度信息表
|
-- 创建温湿度信息表
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,24 @@
|
||||||
|
-- 开启表头显示
|
||||||
|
.headers on
|
||||||
|
|
||||||
|
-- 设置列的宽度
|
||||||
|
.mode column
|
||||||
|
|
||||||
|
-- 插入数据到用户登录表
|
||||||
|
insert into login_users (name, password)
|
||||||
|
values ('admin', 'admin');
|
||||||
|
|
||||||
|
insert into login_users(name,password)
|
||||||
|
values('chang','chang');
|
||||||
|
|
||||||
|
insert into login_users(name,password)
|
||||||
|
values('liu','liu');
|
||||||
|
|
||||||
|
insert into login_users(name,password)
|
||||||
|
values('chengh','chengh');
|
||||||
|
|
||||||
|
-- 列举显示已经创建的表
|
||||||
|
.tables
|
||||||
|
|
||||||
|
-- 显示用户登录表的数据
|
||||||
|
select * from login_users;
|
Loading…
Reference in New Issue