SQL查询在MySQL中创建一个表来存储tweet
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL查询在MySQL中创建一个表来存储tweet相关的知识,希望对你有一定的参考价值。
[Query related to php code to save tweets from the twitter search API to a mysql database](http://snipplr.com/view/56994/save-tweets-using-php-from-the-twitter-search-api-to-a-mysql-database/ "PHP code to save tweets from the twitter search API to a MySQL database")
CREATE TABLE `tweets` ( `id` BIGINT(20) NOT NULL, `created_at` datetime NOT NULL, `from_user` VARCHAR(100) NOT NULL, `from_user_id` BIGINT(20) NOT NULL, `text` text NOT NULL, `source` text NOT NULL, `geo` VARCHAR(100) NOT NULL, `iso_language_code` VARCHAR(10) NOT NULL, `profile_image_url` VARCHAR(100) NOT NULL, `to_user_id` BIGINT(20) NOT NULL, `query` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
以上是关于SQL查询在MySQL中创建一个表来存储tweet的主要内容,如果未能解决你的问题,请参考以下文章