1 Star 0 Fork 0

李童/cmdb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sql.go 968 Bytes
一键复制 编辑 原始数据 按行查看 历史
李童 提交于 2022-12-04 15:12 . curd
package impl
const (
InsertResourceSQL = `
INSERT INTO resource (
id,
vendor,
region,
create_at,
expire_at,
type,
name,
description,
status,
update_at,
sync_at,
accout,
public_ip,
private_ip
)
VALUES
(?,?,?,?,?,?,?,?,?,?,?,?,?,?);
`
// INSERT INTO `host` ( resource_id, cpu, memory, gpu_amount, gpu_spec, os_type, os_name, serial_number )
// VALUES
// ( "111", 1, 2048, 1, 'n', 'linux', 'centos8', '00000' );
InsertDescribeSQL = `
INSERT INTO host ( resource_id, cpu, memory, gpu_amount, gpu_spec, os_type, os_name, serial_number )
VALUES
( ?,?,?,?,?,?,?,? );
`
// -- 1页2条数据, 2 offset: (page_number-1)*page_size
// SELECT * FROM resource AS r LEFT JOIN `host` AS h ON r.id=h.resource_id WHERE id LIKE 'ins-0%' LIMIT 2,2 ;
QueryHostSQL = `
SELECT
r.*,h.cpu, h.memory, h.gpu_spec, h.gpu_amount, h.os_type, h.os_name, h.serial_number
FROM
resource AS r
LEFT JOIN host AS h ON r.id = h.resource_id
`
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/vak80/cmdb.git
git@gitee.com:vak80/cmdb.git
vak80
cmdb
cmdb
v0.0.2

搜索帮助