Bayt dosya boyutu saymak MySQL alan türü

1 Cevap php

Sabah,

I'm storing documents informations (Word, excel, ...) in a MySQL database. I have a column "size" where i store the filesize in bytes like 582656, 136260, 383266... But when i order by size, results are a little bit disorder. What type of mysql field should i use ? I've tried VARCHAR and INT, same result.

Regards, Emmanuel

1 Cevap

Soldan sağa doğru sıralamak gibi VARCHAR kesinlikle yanlış sonuçlar verecektir.

eg, VARCHAR sorted will place 12 before 2, as the first 1 in 12 is less than 2.

Ama INT ne gerek size vermelidir.

Burada türleri bir çift göz var

Numeric Types