字段名分别是company、ID 数据库名db_articlel代码要怎么写呢?
这是我从网上采用的
insert into db_articlel(company,ID,cdate)select 'company' from db_xmrc where not exists(select company from db_articlel where company='$company')
试了下 不行 高手帮忙下、还有就是PHP中怎样编写每日自动运行 1小时抓取一次数据的代码。抓取的代码自己已经写好 剩下的就是怎样编写每日自动运行 1小时抓取一次数据的代码。
insert into db_articlel(company,ID,cdate)select 'company' from db_xmrc where not exists(select company from db_articlel where company='$company')
我不知道这句行不行,反正我觉得是有错的样子。
insert into db_articlel (company,ID,cdate) values (@company,@ID,@cdate) where @company not in
(select 'company' from db_xmrc where company=@company)
至于sql server还是mysql,转换起来都一样的吧。