Posts by Harry Francis Bacon • 19 points
4 posts
-
0
votes3
answers882
viewsA: Insert multiple php mysql records
Or also as friend above said putting: create table images( id int unsigned not null auto_increment, id_veiculos int unsigned default null, imagem blob not null, primary key (id), constraint…
-
-1
votes3
answers882
viewsA: Insert multiple php mysql records
Hello my friend see these links: http://blog.wieczorek.com.br/index.php/como-fazer-o-upload-de-arquivos-para-um-banco-de-dados-mysql-utilizando-o-php?blog=1…
-
0
votes1
answer74
viewsA: How to make an Insert in this table
I find it best not to put year inside tables just let straight on the combobox the year-manufacture/model you put on the vehicle table. tries to do so:…
-
2
votes5
answers57768
viewsA: Count equal records with SELECT DISTINCT and COUNT
In the SQLFIDDLE Test: create table algo( id int not null auto_increment, nome varchar(10) not null, primary key(id)); insert into algo (id, nome) values (0,'Teste'); insert into algo (nome) values…