如何把SQL数据库中 表的字段 和其他字段 用下拉菜单和文字显示 INSERT

如果我的SQL数据库中的表中的值如下ABCDEFGHIA1B1C1D1E1F1G1H1I1A2B2C2D2E2F2G2H2I2A3B3C3D3E3F3G3H3I3怎么做一... 如果我的SQL数据库中的表中的值如下
A B C D E F G H I
A1 B1 C1 D1 E1 F1 G1 H1 I1
A2 B2 C2 D2 E2 F2 G2 H2 I2
A3 B3 C3 D3 E3 F3 G3 H3 I3

怎么做一个下拉菜单 菜单的值 分别为 A A1 A2 A3
当我选择A 时 右边的表格出来 B C D E F G H I
当我选择A1时 右边的表格出来 B1 C1 D1 E1 F1 G1 H1 I1
......A2.. .............. B2 C2 D2 E2 F2 G2 H2 I2
........A3. .............. B3 C3 D3 E3 F3 G3 H3 I3
知道的帮忙下 追加50分
楼下没看到调用数据库 的过程啊
这样我要把所有的值都用手填上啊
能不能补充一下
帮忙做个调用的循环过程
展开
 我来答
百度网友0dcaec66fd3
2008-07-21 · TA获得超过248个赞
知道答主
回答量:140
采纳率:0%
帮助的人:0
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script>
var currentObj = null;
function check(obj){
if (currentObj) currentObj.style.display="none";
currentObj=document.getElementById(obj.options[obj.selectedIndex].value);
if (currentObj)currentObj.style.display="";
}

</script>
</head>

<body>
<select name="select" id="select" style="float:left;" onchange="check(this)">
<option value="">选择</option>
<option value="A">A</option>
<option value="A1">A1</option>
<option value="A2">A2</option>
<option value="A3">A3</option>
</select>
<table id="A" style="float:left; display:none;">
<tr>
<th scope="col"> B</th>
<th scope="col"> C</th>
<th scope="col"> D</th>
<th scope="col"> E</th>
<th scope="col"> F</th>
<th scope="col"> G</th>
<th scope="col"> H</th>
<th scope="col"> I</th>
</tr>
</table>
<table id="A1" style="float:left; display:none;">
<tr>
<th scope="col"> B1</th>
<th scope="col"> C1</th>
<th scope="col"> D1</th>
<th scope="col"> E1</th>
<th scope="col"> F1</th>
<th scope="col"> G1</th>
<th scope="col"> H1</th>
<th scope="col"> I1</th>
</tr>
</table>
<table id="A2" style="float:left; display:none;">
<tr>
<th scope="col"> B2</th>
<th scope="col"> C2</th>
<th scope="col"> D2</th>
<th scope="col"> E2</th>
<th scope="col"> F2</th>
<th scope="col"> G2</th>
<th scope="col"> H2</th>
<th scope="col"> I2</th>
</tr>
</table>
<table id="A3" style="float:left; display:none;">
<tr>
<th scope="col"> B3</th>
<th scope="col"> C3</th>
<th scope="col"> D3</th>
<th scope="col"> E3</th>
<th scope="col"> F3</th>
<th scope="col"> G3</th>
<th scope="col"> H3</th>
<th scope="col"> I3</th>
</tr>
</table>
</body>
</html>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
司恩乌雅书兰
2019-05-11 · TA获得超过3948个赞
知道大有可为答主
回答量:3214
采纳率:27%
帮助的人:236万
展开全部
insert是dml语言,主要是插入数据
alter是ddl语言,主要是比如修改一些表结构,修改用户等
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式