我遇到一个问题,我无法在我的一个MYSQL查询中使用order_by
因为它使另一个不能正常工作。我不明白的是,两个查询都是无关的,更改第一个查询不应该影响第二个。
你能看出order_by
影响list_all_resorts
的原因吗?
我已经在有趣的部分添加了一些评论(//)。
$shift_level = $this->shift_previous_day($list_all_resorts, 'level');
protected function shift_previous_day($list_all_resorts, $type) {
foreach ($list_all_resorts->result() as $list_all_resorts_Array){
$shift_DB = $this->shift_previous_day_DB($list_all_resorts_Array->id_resort, $type);
}
echo $shift_previous_day_DB;
}
protected function shift_previous_day_DB($id_resort, $type){
$this->db->trans_start();
$this->db->set($type.'_d134', $type.'_d133', FALSE);
$this->db->set($type.'_d1', $type.'_d0', FALSE);
$this->db->set($type.'_d0', '0', FALSE);
$this->db->where('id_resort', $id_resort);
$this->db->update('game_resort_'.$type);
$this->db->order_by('season', 'DESC'); // If I remove this line there is no error thrown
$this->db->limit('1');
$this->db->trans_complete();
if ($this->db->trans_status() === FALSE){
return log_message();
}
else {
$result = 'all OK';
return $result;
}
}
$add_cash_to_history = $this->add_todays_stat_to_history('cash');
//This is where list_all_resorts will fail. Before that it works fine
protected function add_todays_stat_to_history($data_type) {
$info_message = '';
$list_all_resorts = $this->list_all_resorts(); // The is where list_all_resorts is called
foreach ($list_all_resorts->result() as $row_list_all_resorts){
//do some stuff
}
return $info_message;
}
protected function list_all_resorts(){
$this->db->select('id_resort'); // This is where the error points to
$this->db->from('game_resorts');
return $this->db->get();
}
我得到的错误是:
发生数据库错误错误号码:1054未知列'赛季'
在' order子句'选择
game_resorts
。id_resort
FROM
game_resorts
ORDER BYseason
DESC LIMIT 1
更新
describe game_resorts:
id_resort int(11) NO PRI auto_increment
resort_name varchar(45) NO
resort_country varchar(45) YES
resort_description varchar(256) YES
id_player int(11) YES MUL
describe `game_resort_cash`:
id int(11) NO PRI
id_resort int(11) NO MUL
season int(3) NO 1
cash_d0 int(11) YES
cash_d1 int(11) YES
cash_d134 int(11) YES
答案 0 :(得分:3)
请记住$this->db
在两个函数调用中都是同一个对象,所以让我们看看它收到的调用序列:
//From shift_previous_day_DB
$this->db->trans_start();
$this->db->set($type.'_d134', $type.'_d133', FALSE);
$this->db->set($type.'_d1', $type.'_d0', FALSE);
$this->db->set($type.'_d0', '0', FALSE);
$this->db->where('id_resort', $id_resort);
$this->db->update('game_resort_'.$type);
$this->db->order_by('season', 'DESC');
$this->db->limit('1');
$this->db->trans_complete();
//From list_all_resorts
$this->db->select('id_resort');
$this->db->from('game_resorts');
$this->db->get();
有些方法只是为执行下一个查询时设置db
对象,以及执行查询和重置对象的方法。 update
和get
属于第二组,而set
,where
,order_by
,limit
,select
和{ {1}}是第一个。 from
和trans_start
独立工作。
由于trans_complete
和order_by
的调用是在调用limit
之后,它们会影响下一个语句,即update
。您可以在错误消息中看到:不仅在生成的语句中有get
,还有ORDER BY season DESC
。
要解决此问题,您应该将LIMIT 1
和order_by
放在limit
之前:
update
答案 1 :(得分:0)
现在您正在说SELECT game_resorts.id_resort,这将是来自game_resorts表的id_resort col。你并没有告诉它寻找所有cols而是具体的cols。如果您不想要全部选择,请执行SELECT game_resorts.id_resort, game_resorts.season
...换句话说:$this->db->select('id_resort');
还应调用季节列。更新那家伙。
答案 2 :(得分:0)
您的查询:
SELECT game_resorts.id_resort FROM game_resorts ORDER BY season DESC LIMIT 1
在这个查询中,Mysql找不到季节列进入game_resorts表。因此,如果您想使用季节进行排序,那么您需要将两个表保持连接。因为季节列发现在game_resort_cash表中。
这是左连接查询:
select t1.*,t2.* from game_resorts t1
left join game_resort_cash t2
on(t1.id_resort=t2.id_resort) order by t2.season desc limit 1
将此查询运行到您的Mysql数据库中我希望它能为您工作。 感谢。