MYSQL基本操作

mysql -u root -p ---以root登录   show databases;  --- 查询数据库 use database;   --- 切换数据库 show tables;  --- 查询表 Desc table; --- 查看表结构 增--- Insert into table(字段1,字段2,...) values(值);        Insert into table v
相关文章
相关标签/搜索