mysql语句学习记录

一、建表

1.创建数据

create table Myson(

  Nameid int,

  Name text(10),

  professional text(10),

  Age varchar(10),

  smalldatetime null,

  ID number char(18).

  specialty text(10)

);

2.增加列名

Alter table myson

add note text(10);

3.插入数据

insert into +表名

4.select语句

select +列名 from +表名 where +条件

如果有时候创建表的时候没有添加数据的时候,不知道表哪些列名可以用语句 “desc +列名”查询;

5.insert into 语句

 insert into myson(NameID,Name,professional,Age,Id_number) values(‘1‘,‘王为公‘,‘软件技术‘,‘19‘,340322642459615);

insert into 表名(列名)values(‘值‘,‘值‘,‘值‘,‘值‘);

6.update语句

update 表名 set + 列名=“修改的值” (where 可以不加);

update myson set NameID=‘1‘ where Name=‘王为公‘;

mysql语句学习记录

上一篇:从0到1打造正则表达式执行引擎(二)


下一篇:移动端调试vConsole