vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Performance wise, what is a BIGINT like in comparison to an INT on a 32 bit machine? Thanks. -- Richard Heyes http://www.websupportsolutions.co.uk Mailing list management service allowing you to reach your Customers and increase your sales. ** NOW OFFERING FREE ACCOUNTS TO CHARITIES AND NON-PROFITS ** |
| |||
| I think it's the same. On Jan 16, 2008 6:03 PM, Richard Heyes <richardh@phpguru.org> wrote: > Performance wise, what is a BIGINT like in comparison to an INT on a 32 > bit machine? > > Thanks. > > -- > Richard Heyes > http://www.websupportsolutions.co.uk > > Mailing list management service allowing you to reach your Customers > and increase your sales. > > ** NOW OFFERING FREE ACCOUNTS TO CHARITIES AND NON-PROFITS ** > > -- > MySQL General Mailing List > For list archives: http://lists.mysql.com/mysql > To unsubscribe: > http://lists.mysql.com/mysql?unsub=y...0608@gmail.com > > -- I'm a mysql DBA in china. More about me just visit here: http://yueliangdao0608.cublog.cn |
| |||
| > I think it's the same. I seem to remember that a BIGINT id two INTs tacked together, so how is that possible? -- Richard Heyes http://www.websupportsolutions.co.uk Mailing list management service allowing you to reach your Customers and increase your sales. ** NOW OFFERING FREE ACCOUNTS TO CHARITIES AND NON-PROFITS ** |
| ||||
| Hi, On Jan 16, 2008 5:13 AM, Richard Heyes <richardh@phpguru.org> wrote: > > I think it's the same. > > I seem to remember that a BIGINT id two INTs tacked together, so how is > that possible? MySQL uses BIGINT for most internal math. The data types influence only how the data is stored, not how MySQL does computations. |