go语言操纵数据库增删改 golang操作数据库( 二 )


}
}
insert_sql := "INSERT INTO xiaorui(lvs) VALUES(?)"
_, e4 := db.Exec(insert_sql,"nima")
fmt.Println(e4)
db.Close() //关闭数据库
}
数据库的增删改查?1、数据库增加数据:
1)插入单行
insert [into] 表名 (列名) values (列值)
例:insert into t_table (name,sex,birthday) values ('开心朋朋','男','1980/6/15')
2)将现有表数据添加到一个已有表 insert into 已有的新表 (列名) select 原表列名 from 原表名
例:insert into t_table ('姓名','地址','电子邮件')
select name,address,email from t_table
3)直接拿现有表数据创建一个新表并填充 select 新建表列名 into 新建表名 from 源表名例:select name,address,email into t_table from strde
2、数据库删除数据:
1)删除满足条件的行
delete from 表名 [where 删除条件] 。
例:delete from t_table where name='开心朋朋'(删除表t_table中列值为开心朋朋的行)
2)删除整个表 truncate table 表名
truncate table tongxunlu
注意:删除表的所有行,但表的结构、列、约束、索引等不会被删除;不能用语有外建约束引用的表
3、数据库修改数据 update 表名 set 列名=更新值 [where 更新条件]
例:update t_table set age=18 where name='蓝色小名'
4、数据库查询数据:
1)精确(条件)查询
select 列名 from 表名 [where 查询条件表达试] [order by 排序的列名[asc或desc]]
2)查询所有数据行和列 。例:select * from a
说明:查询a表中所有行和列
3)使用like进行模糊查询
注意:like运算副只用于字符串,所以仅与char和varchar数据类型联合使用
例:select * from a where name like '赵%'
说明:查询显示表a中,name字段第一个字为赵的记录
4)使用between在某个范围内进行查询
例:select * from a where nianling between 18 and 20
说明:查询显示表a中nianling在18到20之间的记录
5)使用in在列举值内进行查询
例:select name from a where address in ('北京','上海','唐山')
说明:查询表a中address值为北京或者上海或者唐山的记录,显示name字段
扩展资料:
插入之前需要创建数据表,创建方式如下:
CREATE TABLE 表名称
(
列名称1 数据类型,
列名称2 数据类型,
列名称3 数据类型,
....
)
例如:--流程步骤定义表
create table T_flow_step_def(
Step_noint not null,--流程步骤ID
Step_namevarchar(30)not null, --流程步骤名称
Step_desvarchar(64)not null,--流程步骤描述
Limit_timeint not null,--时限
URLvarchar(64)not null,--二级菜单链接
Remarkvarchar(256)not null,
)
参考资料:百度百科-sql语句大全
数据库增删改查的基本命令以下是总结的mysql的常用语句,欢迎指正和补充~
一、创建库,删除库,使用库
1.创建数据库:create database 库名;
2.删除数据库:drop database 库名;
3.使用数据库:use 库名;
二、创建数据表
1.创建表语句:create table 表名(字段名1 字段类型 字段约束,字段2 字段类型 字段约束...);
2.创建与现有表一样字段的新表:create table 表名 like 已有表名;
3.将查询结果创建新表:create table 表名 select * from 现有表 where...(查询语句);
三、查看表结构,查看建表语句,删除表
1.查看表结构:desc 表名;
2.查看建表语句:show create table 表名;
3.删除表:drop table 表名;
四、修改表结构
1.对数据表重命名:alter table 表名 rename 新表名;
2.增加字段:alter table 表名 add 字段名 字段类型 字段约束; (PS:可用first/after函数调整字段位置)

推荐阅读