¥不是在定义的时候插入的。定义salary定义成varchar(),然后update字段
alter table user1 add column salary varchar(10);
insert into user1(salary)
... values('¥35000.00')
... where id=1;
alter table user1 add column salary varchar(10);
insert into user1(salary)
... values('¥35000.00')
... where id=1;
2017-09-10
count(*)表示根据where后面语句的数量要有多少。
如果我们要评选三好学生,条件是至少有两门课程在90分以上才能有资格,列出有资格的学生号及90分以上的课程数。
//进行分组显示,并且按照where条件之后计数,在根据having子句筛选分组
SQL> select sno,count(*) from sc where grade>=90 group by sno having count(*)>=2;
SNO COUNT(*)
---------- ----------
1 3
2 2
如果我们要评选三好学生,条件是至少有两门课程在90分以上才能有资格,列出有资格的学生号及90分以上的课程数。
//进行分组显示,并且按照where条件之后计数,在根据having子句筛选分组
SQL> select sno,count(*) from sc where grade>=90 group by sno having count(*)>=2;
SNO COUNT(*)
---------- ----------
1 3
2 2
2017-08-03
最新回答 / weixin_慕工程1563154
https://vk.com/@712781708-88859https://vk.com/@712781708-88860https://vk.com/@712781708-88861https://vk.com/@712781708-88862https://vk.com/@712781708-88863https://vk.com/@712781708-88864https://vk.com/@712781708-88865https://vk.com/@712781708-88866https:/...
2017-07-25
最新回答 / weixin_慕工程1563154
https://vk.com/@712781708-88859https://vk.com/@712781708-88860https://vk.com/@712781708-88861https://vk.com/@712781708-88862https://vk.com/@712781708-88863https://vk.com/@712781708-88864https://vk.com/@712781708-88865https://vk.com/@712781708-88866https:/...
2017-04-26
已采纳回答 / mukestudy2045
1、使用命令:mysqld install MySQL --defaults-file="配置文件路径"如<...code...>2、my.ini要提前配置好3、cmd窗口要使用右键管理员权限打开4、看你cmd命令不熟悉,最好还是安装 安装版mis 而不是这种手动配置
2017-03-23