本文介绍了动态应用程序的MS SQL表结构的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在构建一个动态应用程序。



应用程序的基本功能是我可以创建一个问题。一个问题可能有很多列。这些列将以表结构显示。然后用户将填写详细信息。以下是样本。



问题:1。列出可用项目及其截止日期?



列:1。项目 - 文本框2.截止日期 - 文本框



所以我会在下表中显示这些数据。



[]





用户将填写行并单击提交按钮。将添加另一个空行以添加另一个响应,如下所示。



[]



用户将提交任何回复。



像这样,列数将是动态的,也是每列都会有一些验证,比如Unique,AcceptsNull等......



如何在ms sql server中创建表结构来保存问题,列和响应。



请提前帮助谢谢..

I am building a dynamic app.

The basic of the app is i can create a question. A question may have many columns. These columns will be displayed in table structure. Then the user will fill the details. Below is the sample.

Question: 1. List the projects available and their deadlines?

Columns: 1. Project - Textbox 2. Deadline - Textbox

So i will show this data in the table like below.

Click Here[^]


The user will fill the row and click on submit button. Another empty row will get added to add the another response like below.

Click Here[^]

The user will submit any no of responses.

Like this the no of columns will be dynamic and also the each column will have some validation like Unique,AcceptsNull etc...

How to create table structure in ms sql server to save the question,column and the responses.

Please help thanks in advance..

推荐答案


这篇关于动态应用程序的MS SQL表结构的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 10:50