mysq

mysql 笔记

穿精又带淫゛_ 提交于 2020-12-31 04:58:22
mysql 笔记。 1,链接数据库 :mysql -uroot -p 输入密码:******** 强调: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 79 --->客户端的链接ID,记录了mysql服务到目前为止的链接次数;每个新的链接id都会自动加一。 2,创建数据库 mysql> create database test1; Query OK, 1 row affected (0.03 sec)------->影响行数1 mysql> drop database test1; Query OK, 0 rows affected (0.07 sec)------>影响行数0,mysql drop语句的影响行数都为0. 3,创建表: create table tablename(id int(11) not null,name varchar(20) not null); Query OK, 0 rows affected (0.14 sec) -------->影响行数0. 4,查看表定义:desc tablename; mysql> desc user; 5,查看表定义(详细信息); mysql> show create table user \G; -