반응형
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
반응형
'programing' 카테고리의 다른 글
각도 사용법.각 컨트롤러 또는 스코프에서 Json에게 (0) | 2023.10.31 |
---|---|
AngularJS는 ng-model에서 포맷된 날짜를 얻습니다. (0) | 2023.10.31 |
메모리를 할당하고 문자열을 c로 저장합니다. (0) | 2023.10.31 |
기본 단어 변경쿼리를 제목별 순서로 누릅니다. (0) | 2023.10.31 |
엑셀 2010에서 "*"자를 제거하는 방법은? (0) | 2023.10.31 |