unity__数据库基础

欢迎大家关注我的日志,今天学习了unity连接数据库,回顾一下数据库的基础知识吧:

--创建数据库
create database second

--利用数据库
use second

--创建表
create table users
(
id int identity(101,1) primary key,
name varchar(50) not null,
password varchar(10)
)

--查询表中所有信息
select * from users

--插入一条数据
insert into users(name,password) values('张三','123')
insert into users values('李四','456')

insert into users(name) values('张三')

--更新一条数据
update users set name='王五' where id=103

--删除一条数据
delete from users where name='王五'


--用AS来命名列

select id as 编号,name as 姓名 from users


--用 = 来命名列

select 编号 =id ,姓名=name  from usersselect '编号' =id ,'姓名'=name  from users

如果大家还有什么困难的话,可以关注我的日志:

http://unity.gopedu.com/home.php?mod=space&uid=3325&do=blog&quickforward=1&id=1050

更多精彩在狗刨网:

http://unity.gopedu.com/forum.php

你可能感兴趣的:(unity__数据库基础)