赞
踩
– 查询表中的单个字段 –
select sNo from student;
– 查询表中的单个字段 –
select sNo, sName from student;
– 查询表中的所有字段
select * from student;
select 100; select '男';
select 100%98;
select version();
1. 方便理解
2. 方便区分 (如果要查询的字段有重名的情况下,可以区分看来看)
select 100%98 as 结果;
select sNo as 学号, sName as 名字 from student; #提高可读性
select sNo 学号, sName 名字 from student;
– 特殊情况 想把sNo 起为 out put 的别名 –
select sNo as out put from student; – err 因为 out 也是一个关键字。–
select sNo as ‘out put’ from student;
select distinct deptment from student;
C语言中 ‘+’ 号的作用:
1. 运算符,两个操作数都为数值型
2. 连接符, 只要有一个操作数为字符串
Mysql 中 :
仅仅只有一个功能: 运算符
select 100+90; # 两个都为数值型 运算结果 190
select '123'+90; # 有一方为字符型,试图将字符型转换成数
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。