SQL语句的基本使用
1. 使用SQL语句创建数据库studentsdb。12create database studentsdb;
#2.使用SQL语句选择studentsdb为当前使用数据库。
1use studentsdb;
#3.使用SQL语句在studentsdb数据库创建数据表student_info、curriculum、grade。
①12345create table student_info( 学号 char(4) not null primary key , -> 姓名 char(8) not null, -> 性别 char(2), -> 出生日期 date, -> 家族地址 varchar(50) );
②1create table curriculum( 课程编号 char(4) not null primary key, 课程名称 varchar(50), 学分 int );
③12create table grade ( 学号 char(4) not null,课程编号 char(4) not null , 分数 int ...
个人简介
张三
中国政法大学某学院教授、某研究所所长
张三,1977年出生,湖南**人,中国政法大学某学院教授、博士生导师、某研究所所长。中南大学兼职教授。
张三于1995年–1999年本科就读于中国青年政治学院,毕业获得法学学士学位;1999年–2002年硕士就读于中国政法大学研究生院,毕业获得刑法学硕士学位;2002年–2005年博士就读于北京大学法学院,毕业获得刑法学博士学位。2005年进入中国政法大学执教 ;2009年–2010年在美国加利福尼亚大学伯克利分校做访问学者;2013年–2014年在美国杜克大学做访问学者。2020年3月9日应邀入驻哔哩哔哩,两天粉丝超过百万,半年粉丝量突破千万。 获2020年中央电视台年度法治人物、2021年中国新闻周刊年度法治人物。
张三的研究领域为刑法学、刑法哲学、经济刑法、性犯罪。
中国政法大学某学院张三出版过的书籍
法治的细节 《法治的细节》面向大众读者,从热点案件解读、法学理念科普、经典名著讲解等6大板块,普及法律常识与法治观念。内容包括辛普森案、电车难题、性同意制度等法律基本常识,或N号房、张玉环案等时事热点的案件,多维度培育法律思 ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment