CREATE TABLE IF NOT EXISTS `table` (
`id` int(10) unsigned NOT NULL,
`clic` varchar(60) NOT NULL,
`count` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `text` (`clic`)
) ENGINE=MyISAM
你可以使用:
// connect to mysql server
mysql_connect ('localhost', 'user', 'password') or die('connexion failed');
// select the database
mysql_select_db ( 'thedatabase' ) or die('db select failed');
// update the value
$res = mysql_query('UPDATE `table` SET count=count+1 WHERE clic="yep" ') or die(mysql_error());
但是,该行必须之前存在。
此外,您的表结构应该保存搜索到的列,以便为性能问题建立索引。 (唯一键“文本”(“文本”))。
If your table structure is like :
CREATE TABLE IF NOT EXISTS `table` (
`id` int(10) unsigned NOT NULL,
`clic` varchar(60) NOT NULL,
`count` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `text` (`clic`)
) ENGINE=MyISAM
You can use :
// connect to mysql server
mysql_connect ('localhost', 'user', 'password') or die('connexion failed');
// select the database
mysql_select_db ( 'thedatabase' ) or die('db select failed');
// update the value
$res = mysql_query('UPDATE `table` SET count=count+1 WHERE clic="yep" ') or die(mysql_error());
But, the row must exists before.
Also your table structure should avec the searched col to be indexed for performance issus. ( UNIQUE KEY `text` (`text`) ).
发布评论
评论(2)
如果你的表结构是这样的:
你可以使用:
但是,该行必须之前存在。
此外,您的表结构应该保存搜索到的列,以便为性能问题建立索引。 (唯一键“文本”(“文本”))。
If your table structure is like :
You can use :
But, the row must exists before.
Also your table structure should avec the searched col to be indexed for performance issus. ( UNIQUE KEY `text` (`text`) ).