問題:
どうすれば特定のものを取得できautonumber id
ますか?
ID DESCRIPTION CLASS
1 test1 a
2 test2 b
3 test3 a
4 test4 a
5 test5 b
id
(SQL Server の自動インクリメント)
シナリオは次のとおりです。
私はここにこのような3つの列を持っています。
私のクラスはこれを使用して宣言され、特定のクラスの値を取得します。
string strclass = string.empty;
strclass = request.querystring["Class"];
のIDを取得するにはどうすればよいtest2
ですか?
select
変数のみを使用するこのステートメントを使用したいと思います。
例えば:
string sqltest = "select description from items where class = '" + strID + "' and class = '" strclass "'";
どうすればクラスを取得できますかid
。