安详路人

文章
6
资源
0
加入时间
2年10月24天

数据库常用操作命令

数据库常用操作命令开发过程中经常使用的数据库操作命令,以做备忘。 1,进入数据库命令MySQL或者mysql -uroot -phello,其中root和hello分别为用户名和密码。 2,查看数据库列表show databases; 3,进入特定的数据库use mydatabase;其中mydatabase为数据库名。 4,显示所有的数据表名称show tables; 5