SQL学习
一些常用命令
登录
1
mysql -u <USERNAME> -p
其中
为⽤户名,⼀般是 root ,或是你安装MySQL时创建的⽤户;
-p 表示使⽤密码passport登录,然后在弹出的 Enter password: 中输⼊密码,按回⻋登录查看数据库&创建⼀个新的数据库
1
show databases
查看数据库list
1
create
something
1
2
3
4
5mysql> use db0;
mysql> create table student(id int not null primary key, age int, name
varchar(16));
mysql> insert into student values(1, 21, 'hello'), (2, 22, 'world');
mysql> select * from student;
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 逍遥信仰的笔记本!