1.
1)MySQL 连接本地数据库,从cmd中进入mysql命令编辑器: root root分别为用户名和密码
mysql -uroot -proot
2)MySQL 连接本地数据库,用户名为“root”,密码“123”(注意:“-p”和“123” 之间不能有空格)
C:\>mysql -h localhost -u root -p123
2、MySQL 连接远程数据库(192.168.0.201),端口“3306”,用户名为“root”,密码“123”
C:\>mysql -h 192.168.0.201 -P -u root -p123
3.查看mysql建表语句
命令:SHOW CREATE TABLE <table_name> show create table employees; | employees | CREATE TABLE `employees` ( `emp_no` int(11) NOT NULL, `birth_date` date NOT NULL, `first_name` varchar(14) NOT NULL, `last_name` varchar(16) NOT NULL, `gender` enum('M','F') NOT NULL, `hire_date` date NOT NULL, PRIMARY KEY (`emp_no`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
4.删除mysql 中的表
命令:drop table <表名>
mysql> drop table employees;
Query OK, 0 rows affected (0.15 sec)
5.仅查询employess表中的last_name,first_name和birthd_date三个数据
mysql> select concat(last_name,' ',first_name) as name,birth_date as birthday from employees;
6.
从其他数据库中指定的表中导入数据,employees.employees 导入前10条数据
mysql> insert into employees select * from employees.employees limit 10;
7.批量更新数据
UPDATE `sys_invitation` SET `is_known`='' WHERE (`to_id`='');
8.连接查询
1).原生查询
select *,count(o.order_id) from customers as c ,orders as o where c.customer_id=o.customer_id and c.city='shanghai' group by c.customer_id having count(o.order_id)>0;
2).左连接
select *,count(o.order_id) from customers as c left join orders as o on c.customer_id=o.customer_id where c.city='shanghai' group by c.customer_id having count(o.order_id)>0;
可把left join 改为inner join或者right join.
这里依赖两张表orders和customers.
orders建表语句:
CREATE TABLE `orders` (
`order_id` varchar(10) NOT NULL,
`customer_id` varchar(10) NOT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=InnoDB
插入数据:
mysql> insert into orders select 01332,111;
mysql> insert into orders select 01333,112;
mysql> insert into orders select 01334,113;
mysql> insert into orders select 01335,114;
mysql> insert into orders select 01336,111;
mysql> insert into orders select 01337,112;
mysql> insert into orders select 01338,115;
查看数据:
mysql> select * from orders;
+----------+-------------+
| order_id | customer_id |
+----------+-------------+
| 1332 | 111 |
| 1333 | 112 |
| 1334 | 113 |
| 1335 | 114 |
| 1336 | 111 |
| 1337 | 112 |
| 1338 | 115 |
+----------+-------------+
7 rows in set (0.00 sec)
customers建表语句:
create table customers(customer_id varchar(10) not null, city varchar(10), PRIMARY KEY(customer_id) )ENGINE=INNODB;
customers插入数据:
mysql> insert into customers select 112,'shanghai';
mysql> insert into customers select 113,'shanghai';
mysql> insert into customers values(114,'beijing');
mysql> insert into customers values(115,'beijing');
mysql> insert into customers select 116,'hangzhou';
查看数据:
mysql> select * from customers;
+-------------+----------+
| customer_id | city |
+-------------+----------+
| 111 | shanghai |
| 112 | shanghai |
| 113 | shanghai |
| 114 | beijing |
| 115 | beijing |
| 116 | hangzhou |
+-------------+----------+
6 rows in set (0.00 sec)
9.更改数据库名称
alter table tb1 rename tb2;
将表tb1名称更改为tb2,使用rename命令
10.查看mysql表大小和记录数
SHOW TABLE STATUS FROM 数据库名 LIKE 数据表名;
use testdb;
show table status from testdb like 'xuexi30';
11.
-- 修改表编码
ALTER TABLE `user` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci
mysql 常用命令,连接数据库,查看建表语句,批量导入数据,批量更新数据,连接查询的更多相关文章
-
mysql命令行查看建表语句
命令如下: SHOW CREATE TABLE tbl_name 例子: mysql> SHOW CREATE TABLE t\G . row ************************* ...
-
MySQL查看表结构及查看建表语句
查看表结构:desc 表名 mysql> use recommend; Database changed mysql> desc user; +--------------+------- ...
-
hive查看建表语句
查看hive建表语句:show create table tablename; 查看hive表结构:describe tablename; 简写:desc tablename;
-
MySQL的字段属性+SQLyog查看建表语句
MySQL的字段属性 写在前面:数据库就是单纯的表,用来存储数据,只有行和列.行代表数据,列代表字段(id.name.age这种就叫字段) 1.长度 2.默认 3.主键 4.非空 5.Unsigned ...
-
【MySQL】查看建表语句
命令如下: SHOW CREATE TABLE tbl_name 例子: mysql> show create table m_zhbess_vehicle_report\G ********* ...
-
mysql 查看建表语句
show create table `table_name`; 结果如下:
-
常用的sql标准建表语句
使用指定数据库 use v4base 建一张表 /*************************************************************************** ...
-
通过plsql develop查看建表语句
右键--查看 右下角 如下显示,找出ddl语句 可以看到索引等
-
设置更改root密码、连接mysql、mysql常用命令
6月19日任务 13.1 设置更改root密码13.2 连接mysql13.3 mysql常用命令 13.1 设置更改root密码 使用场景:例如长时间不用忘记了mysql的root密码,那么就需要去 ...
随机推荐
-
MVC &ndash; 15.路由机制
15.1.路由检测插件 - RouteDebug 15.2.路由约束 15.3.命名路由 15.4.验证码 15.5.ASP.NET MVC 与 三层架构 15.6.Area区域 15.6.1.尝试将 ...
-
ahjesus 捕获entity framework生成的sql语句
网上这方面的资料很少,找到一个可以用的 http://code.msdn.microsoft.com/EFProviderWrappers 里面有dll可以下载,有教程,不过是E文的. 在Entity ...
-
docker容器互联
link方式 http://blog.csdn.net/halcyonbaby/article/details/42112325 通过link方式创建容器,然后我们可以使用被link容器的别名进行访问 ...
-
Qt之SQL数据库
---------------------------- http://blog.csdn.net/reborntercel/article/details/6991147 http://blog.c ...
-
SpringMVC深入探究(1)——DispatcherServlet与初始化主线
在上一篇文章中,我们给出了构成SpringMVC应用程序的三要素以及三要素的设计过程.让我们来归纳一下整个设计过程中的一些要点: SpringMVC将Http处理流程抽象为一个又一个处理单元 Spri ...
-
[转]unable to resolve superclass of 的奇怪问题和一种解决方法!
[转]unable to resolve superclass of 的奇怪问题和一种解决方法! http://blog.csdn.net/jackymvc/article/details/90015 ...
-
Android(java)学习笔记141:SQLiteDatabase的query方法参数分析
public Cursor query (boolean distinct, String table, String[] columns, String selection, String[] se ...
-
MVC 5 on Windows Server 2008/IIS 7
将网站部署在2008上,结果出现了 HTTP Error 403.14 - Forbidden The Web server is configured to not list the content ...
-
Swift基础之UITabBarController(这是在之前UITableView中直接添加的)
这些基础内容基本已经可以搭建项目框架,剩下的就是一些优化,细节和数据请求问题,慢慢更新.... 在AppDelegate中创建方法 //创建方法执行UITabBarController func cr ...
-
<;%@page contentType=";text/html;charset=gbk";%>; 与 <;meta http-equiv=";Content-Type"; content=";text/html; charset=GBK";>;区别
前一个是在服务端起作用,是告诉应用服务器采用何种编码输出JSP文件流, 后一个是在客户端起作用,是告诉浏览器是采用何种编码方式显示HTML页面