SQL is a standard language for storing, manipulating and retrieving data in databases. 关系型数据库:RDBMS(Relational Database Mangement System) SQLite3: Rails默认的轻量级数据库,集成于Rails中,在db/development.sqlite3这个档案中. 用途:单机用途.所以在实际部署的时候会换成MySQL等数据库服务器. MySQL: 目前流行的开…
--新建数据库 create database Studentdb go --使用数据库 use Studentdb go --新建表 create table Username ( StudentNo ,) not null,--学号并设置标识列 LoginPwd ) not null,--密码 StudentName ) not null,--姓名 Sex ) not null,--性别 GradeId int not null,--年级 Phone )not null,--电话 Addre…