今日回顾数据库

数据库
alter修改数据表中的元素的属性
只能after把表中的元素移动到后一位
alter table tabkename MODIFY
元素名 属性 AFTER 另一个元素名
修改表中的元素名

alter table tablename CHANGE
原元素名 修改的元素名 dtaetime; //datetime表示一种属性

修改字段类型

alter table tablename MODIFY 元素名 要修改的属性直接改

删除字段

alter table tablename drop 元素名

增加字段

alter table tablename add 元素名 属性

删除表

drop table tablename

但别乱删除数据表,恢复起来比较麻烦,如果没有备份的话,那就更加头疼了。

向表中插入数据

insert table tablename(“对应的数据”,“”)# 数据表几个元素,这个元组中就有几个元素

进行算数操作

 select price,price + 10,price - 10,price * 2,price /2,price % 3 from tmp15;

比较价格是否是在30到80之间,返回与70和30相比比较大的值,判断价格是否为()中的某个值

select price,price between 30 and 80,greatest(price,70,30),price in (10,20,50,35) from tmp15;

&&就是逻辑运算 与
| | 或
位运算符
为或 |
位于 &

posted @ 2021-10-10 18:00  索匣  阅读(32)  评论(1编辑  收藏  举报