这是我的注册 PHP 表单的查询部分。
列account
, password
,email
和age
可以由注册页面用户插入,它们运行良好,但是,列account_id
需要在每个注册过程中自动增加 1。
表名Account
不是帐户,列名是account_id
。
$query = "INSERT Account( account,password,email,pk_,type_ ) VALUES('$username','$converted_password','$email',1,'$age')";
$query_total = mssql_query("SELECT COUNT(account_id) FROM Account");
$results_check = mssql_query($query_check);
$results_total = mssql_fetch_row($query_total);
$result_total = $results_total['0'];
它为 (account_id) 列提供了一个 NULL 值,并且 INSERT 失败。