代码
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PGSQL 函数生成器</title>
<style>
body { font-family: Arial, sans-serif; margin: 20px; }
label, select, input, button { display: block; margin-bottom: 10px; }
select {
width: auto;
min-width: 150px;
}
input[type="text"] {
width: 100%;
max-width: 400px;
padding: 5px;
}
button { width: auto; padding: 8px 16px; cursor: pointer; }
pre {
width: 100%;
min-height: 100px;
white-space: pre-wrap;
word-wrap: break-word;
border: 1px solid
padding: 10px;
overflow: auto;
}
</style>
</head>
<body>
<h2>PGSQL 函数生成器</h2>
<label for="operation">选择 SQL 操作:</label>
<select id="operation">
<option value="create_table">新建表</option>
<option value="add_column">新增字段</option>
<option value="create_sequence">新增序列</option>
<option value="create_index">新增索引</option>
<option value="add_constraint">新增约束</option>
</select>
<!
<div id="tableName-section">
<label for="tableName">表名:</label>
<input type="text" id="tableName" placeholder="请输入表名">
</div>
<div id="details-section">
<label for="details" id="details-label">建表 SQL:</label>
<input type="text" id="details" placeholder="例如: create table test (id bigserial primary key, info text);">
</div>
<div id="index-section" style="display:none;">
<label for="indexName">索引名称:</label>
<input type="text" id="indexName" placeholder="请输入索引名称">
<label for="indexFields">索引字段:</label>
<input type="text" id="indexFields" placeholder="例如: id, info">
</div>
<div id="constraint-section" style="display:none;">
<label for="constraintName">约束名称:</label>
<input type="text" id="constraintName" placeholder="请输入约束名称">
<label for="constraintDetails">约束信息:</label>
<input type="text" id="constraintDetails" placeholder="例如: CHECK (age < 200 AND age >= 0)">
</div>
<button onclick="generateSQL()">生成 SQL</button>
<label for="output">生成的 SQL:</label>
<pre id="output"></pre>
<script>
document.getElementById("operation").addEventListener("change", function(){
let inputs = document.querySelectorAll("input[type='text']");
inputs.forEach(input => input.value = "");
document.getElementById("output").innerHTML = "";
let op = this.value;
let detailsLabel = document.getElementById("details-label");
let detailsInput = document.getElementById("details");
let indexSection = document.getElementById("index-section");
let constraintSection = document.getElementById("constraint-section");
let tableNameSection = document.getElementById("tableName-section");
if (op === "create_table") {
tableNameSection.style.display = "block";
detailsLabel.innerText = "建表 SQL";
detailsInput.placeholder = "例如: create table test (id bigserial primary key, info text);";
detailsInput.style.display = "block";
indexSection.style.display = "none";
constraintSection.style.display = "none";
} else if (op === "add_column") {
tableNameSection.style.display = "block";
detailsLabel.innerText = "字段信息";
detailsInput.placeholder = "例如: age int";
detailsInput.style.display = "block";
indexSection.style.display = "none";
constraintSection.style.display = "none";
} else if (op === "create_sequence") {
tableNameSection.style.display = "none";
detailsLabel.innerText = "序列创建 SQL";
detailsInput.placeholder = "例如: CREATE SEQUENCE test_id_seq";
detailsInput.style.display = "block";
indexSection.style.display = "none";
constraintSection.style.display = "none";
} else if (op === "create_index") {
tableNameSection.style.display = "block";
detailsLabel.innerText = "";
detailsInput.style.display = "none";
indexSection.style.display = "block";
constraintSection.style.display = "none";
} else if (op === "add_constraint") {
tableNameSection.style.display = "block";
detailsLabel.innerText = "";
detailsInput.style.display = "none";
indexSection.style.display = "none";
constraintSection.style.display = "block";
}
});
function generateSQL() {
let operation = document.getElementById("operation").value;
let tableName = document.getElementById("tableName").value.trim();
let details = document.getElementById("details").value.trim();
let indexName = document.getElementById("indexName").value.trim();
let indexFields = document.getElementById("indexFields").value.trim();
let constraintName = document.getElementById("constraintName").value.trim();
let constraintDetails = document.getElementById("constraintDetails").value.trim();
let sql = "";
if (operation !== "create_sequence" && !tableName) {
alert("请输入表名");
return;
}
switch (operation) {
case "create_table":
if (!details) {
alert("请输入建表 SQL");
return;
}
sql = `
CREATE OR REPLACE FUNCTION func_AA00000()
RETURNS int AS
$BODY$
DECLARE
BEGIN
PERFORM NULL FROM pg_tables WHERE tablename='${tableName}';
IF NOT FOUND THEN
CREATE TABLE ${tableName}(${details});
END IF;
RETURN 0;
END;
$BODY$
LANGUAGE plpgsql VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;
SELECT * FROM func_AA00000();
DROP FUNCTION IF EXISTS func_AA00000();`;
break;
case "add_column":
if (!details) {
alert("请输入字段信息");
return;
}
sql = `
CREATE OR REPLACE FUNCTION func_AA00000()
RETURNS int AS
$BODY$
DECLARE
BEGIN
PERFORM attname FROM pg_attribute
WHERE attname = '${details.split(" ")[0]}'
IF NOT FOUND THEN
ALTER TABLE ${tableName} ADD ${details};
END IF;
RETURN 0;
END;
$BODY$
LANGUAGE plpgsql VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;
SELECT * FROM func_AA00000();
DROP FUNCTION IF EXISTS func_AA00000();`;
break;
case "create_sequence":
if (!details) {
alert("请输入序列创建 SQL");
return;
}
let tokens = details.split(/\s+/);
let seqName = tokens[2] ? tokens[2] : "";
if (!seqName) {
alert("无法解析序列名称,请检查输入格式");
return;
}
sql = `
CREATE OR REPLACE FUNCTION func_AA00000()
RETURNS int AS
$BODY$
DECLARE
BEGIN
PERFORM NULL FROM information_schema.sequences
WHERE sequence_name='${seqName}';
IF NOT FOUND THEN
${details};
END IF;
RETURN 0;
END;
$BODY$
LANGUAGE plpgsql VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;
SELECT * FROM func_AA00000();
DROP FUNCTION IF EXISTS func_AA00000();`;
break;
case "create_index":
if (!indexName || !indexFields) {
alert("请输入索引名称和索引字段");
return;
}
sql = `
CREATE OR REPLACE FUNCTION func_AA00000()
RETURNS int AS
$BODY$
DECLARE
BEGIN
SELECT * FROM pg_indexes
WHERE tablename='${tableName}'
IF NOT FOUND THEN
CREATE INDEX ${indexName} ON ${tableName}(${indexFields});
END IF;
RETURN 0;
END;
$BODY$
LANGUAGE plpgsql VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;
SELECT * FROM func_AA00000();
DROP FUNCTION IF EXISTS func_AA00000();`;
break;
case "add_constraint":
if (!constraintName || !constraintDetails) {
alert("请输入约束名称和约束信息");
return;
}
sql = `
CREATE OR REPLACE FUNCTION func_AA00000()
RETURNS int AS
$BODY$
DECLARE
BEGIN
PERFORM conname FROM pg_constraint
WHERE conname = '${constraintName}'
IF NOT FOUND THEN
ALTER TABLE ${tableName} ADD CONSTRAINT ${constraintName} ${constraintDetails};
END IF;
RETURN 0;
END;
$BODY$
LANGUAGE plpgsql VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;
SELECT * FROM func_AA00000();
DROP FUNCTION IF EXISTS func_AA00000();`;
break;
}
let htmlContent = sql.split('\n').map(line => {
if (line.trim().startsWith('--')) {
return `<span style="color:blue;">${line}</span>`;
}
return line;
}).join('\n');
document.getElementById("output").innerHTML = htmlContent;
}
</script>
</body>
</html>
结果
