Hha mysql_《与mysql零距离接触》视屏学习笔记

1、数据表的增删改查操作(crud):

对于表:

增:create  table  XXXX

删:droptable XXXX

改:alter table XXXX rename to XXXX

查:select * from XXXX

对于行:

增:insert  into  XXXX(xxxx) values (xxxx)

insert into XXXX set xxxx=xx , xxxx=xx

删:deletefromXXXXwhere xxxx

改:update table set xxxx=xxxx where xxxx=xxxx

查:select xxxx from XXXX

对于列:

增:alter  table  XXXX add xxxx()

删:altertableXXXXdrop xxxx

改:alter table XXXX change xxxx xxxx xxxx

alter table XXXX modify xxxx xxxx

查:show columns from XXXX

2、运算符与函数

字符函数

Concat()                  select concat('hha','-','hdf')

Concat_ws()           select concat_ws('=','A','B','C')

Format()                  select format(125060.752,2)

Lower()                    select lower('HIIHO')

Upper()                    select upper('fsfds')

Left()                        select left('fsfds',2)

Right()                      select right('fsfds',2)

Length()                   select length(' fsfds ')

Ltrim()                      select ltrim(' fsfds ')

Rtrim()                     select rtrim(' fsfds ')

Trim()                       select trim(' fsfds ')

select trim(leading '?' from ' fs?fds ')

select trim(trailing '?' from ' fs?fds ')

select trim(both '?' from ' fs?fds ')

Substring()              select substring(' fsfds ',2,3)

select substring(' fsfds ',2)

Like                           select 'myufsd' like 'm%'

select * from test where first_name like '%1%%' escape '1'

%代表任意个字符

_代表任意一个字符

Replace()                 select replace('fsgasgsfa','s','t')

3、数值运算符

Div                             整数除法

4、比较运算符合函数

Not  between   and

Not  in

5、时间和日期函数

Now()

Curdate()

Curtime()

Date_add()

Datediff()

Date_format()

6、信息函数

Connection_id()

Datebase()

Last_insert_id()

User()

Version()

7聚合函数

。。。

8、加密函数

Md5()

Password()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值