标签:
1.命令行登录: mysql -u xxx -p -h localhost -P 3306,输入密码,回车登录
2.获取帮助, help xxx , \h xxx 不要在后面加分号
3.exit,quit 退出程序
4.MySQL Administrator (估计偏向管理) MySQL Query Browser(大概是偏向查询),反正二者有重合
5.选择数据库use xxx;
展示全部数据库 show databases;
展示当前库中的全部表 show tables; 任意库中的全部表 show tables from xxx
任意表中的全部列 show columns from xxx; 或者 describe xxx;
show create datebase; show create table ,显示创建特定数据库或表的mysql语句
(show status,show grants;show errors;show warnings;)
select
1.distinct xxx,xxx distinct关键字应用于所有列明,不仅仅是第一个
2.limit m,n m开始,n行 等同于 limit n offset m (行m开始取n行,包括行m ; 第一行是行0,不是行1)
3.desc只应用位于其前面的列名,xxx order by prod_price desc,prod_name desc
4. select xxx from xxx where xxx order by xx limit m,n
5.NULL: 在通过过滤选择不具有特定值的行时,不匹配null
标签:
原文地址:http://www.cnblogs.com/Citizen/p/4701304.html