programing

PHP, MySQL 오류: 열 개수가 1행의 값 개수와 일치하지 않음

megabox 2023. 10. 31. 20:42
반응형

PHP, MySQL 오류: 열 개수가 1행의 값 개수와 일치하지 않음

오류가 발생합니다.

Column count doesn't match value count at row 1

다음 코드부터:

$name = $_GET['name'];
$description = $_GET['description'];
$shortDescription = $_GET['shortDescription'];
$ingredients = $_GET['ingredients'];
$method = $_GET['method'];
//$image = $_GET['image'];
$username = $_GET['username'];
$length = $_GET['length'];
$dateAdded = uk_date();
$conn = mysql_connect('localhost', 'dbname', 'pass');
mysql_select_db('dbname');
$query = sprintf("INSERT INTO dbname (id, Name, Description, shortDescription, Ingredients, Method, Length, dateAdded, Username) VALUES ('', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",
    mysql_real_escape_string($name),
    mysql_real_escape_string($description),
    mysql_real_escape_string($shortDescription),
    mysql_real_escape_string($ingredients),
    //mysql_real_escape_string($image),
    mysql_real_escape_string($length),
    mysql_real_escape_string($dateAdded),
    mysql_real_escape_string($username));

    $result = mysql_query($query) or die(mysql_error());

오류는 무엇을 의미합니까?

9개의 필드가 나열되어 있지만 8개의 값만 나열되어 있습니다.메소드를 추가해 봅니다.

삽입 쿼리의 열 매개 변수 수는 9개이지만 8개의 값만 제공했습니다.

INSERT INTO dbname (id, Name, Description, shortDescription, Ingredients, Method, Length, dateAdded, Username) VALUES ('', '%s', '%s', '%s', '%s', '%s', '%s', '%s')

쿼리는 자동 생성되기 때문에 "id" 매개 변수를 생략해야 합니다.

INSERT INTO dbname (Name, Description, shortDescription, Ingredients, Method, Length, dateAdded, Username) VALUES ('', '%s', '%s', '%s', '%s', '%s', '%s', '%s')

쿼리에는 8개 또는 9개의 변수가 있습니다.이름, 설명 등하지만 가치관, 이런 것들 --->'', '%s', '%s', '%s', '%s', '%s', '%s', '%s')", 총 7개만 변수의 수가 값과 같아야 합니다.

저도 같은 문제가 있었는데 알아냈어요.그것이 당신에게도 효과가 있기를 바랍니다.

언급URL : https://stackoverflow.com/questions/5931900/php-mysql-error-column-count-doesnt-match-value-count-at-row-1

반응형