我只是很好奇,实际上我不知道使用CTE的缺点是什么?我知道这个优点,但我只是想知道这些缺点,非常感谢。
答案 0 :(得分:0)
我发现CTE的一个限制是CTE的范围仅限于cte定义之后的下一个sql语句。
import { browserHistory } from 'react-router;
.........
onClick(){
//Your code to add user to the list of users
browserHistory.push("/");
}
.......
render(){
return (
//Add user form
<button onClick={this.onClick.bind(this)}>Add User</button>
);
}