PHP, ben oluşturmak ve aşağıdaki gibi bir SQL sorguları yürütmek.
INSERT INTO Table (Column1, Column2, Column3) VALUES
('1', '2', '3'),
('A', 'B', 'C'),
('AA', 'BB', 'CC');
Ancak, veritabanına eklenen hangi sipariş Ben bu deneyin her zaman farklıdır. Ben onlar listelenen sırayla eklenir emin bir yolu var mı?
Addition: Thanks guys for the help. I have using PHP to create MySQL tables from CSV files for a while. In the past, I have always used created a table and inserted all the rows all at once. In these case, the SQL table always had the same order as my INSERT query. However, now I am creating a MySQL and then adding contents gradually. This is when the database order becomes random.
Ben BY sorgular ... ALTER TABLE kullanarak SİPARİŞ bu üstesinden var, ama orada düzen birinci durumda ve şimdi çok rasgele gibi görünüyor ben merak ediyorum.