Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

mysql - proper way of inserting data with id as auto-increment in mysqli

can someone please verify the proper way of inserting data using MYSQLI?

i need to insert comment data into the table with ID set as auto-increment. do i just leave the values for id as blank ?

$db = dbConnect();
$query = "INSERT INTO comments values ('', '$comment')";
$db->query($query);
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

A proper way would be either omit value, or assign NULL to it.
While empty string which is used in your example, is not a valid value and in strict mode it will issue a warning.

INSERT INTO comments VALUES (NULL, 'comment')
INSERT INTO comments (comment) VALUES ('comment')

are all valid.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

62 comments

56.6k users

...