- 注册时间
- 2012-10-21
- 最后登录
- 2013-5-9
- 阅读权限
- 10
- 积分
- 7
- 精华
- 0
- 帖子
- 1
|
在前台已经将数据传入数据库。但数据无法再前台显示。
String sql =
"select a.*, b.name dept_name, c.name position_name, d.name educational_name \n"
+"from t_employee a \n"
+"left join t_department b \n"
+"on a.dept_id = b.id \n"
+"left join t_position c \n"
+"on a.position = c.id \n"
+"left join t_educational d \n"
+"on a.educational = d.id \n"
+"where a.name like '%" + key + "%' \n";
貌似是在t_employee数据表中用上了多个关联。能否在DataGrid 只显示t_employee表中的数据。
SearchEmployees GetEmployee InsertEmployee 与DataGrid 相关。目前我只想获取t_employee数据表中的值。上述语句需要删改哪些地方。ajaxService的中需不需要改。
为啥显示在DataGrid的数据用SearchEmployees 一定要并上多个数据表。不易理解啊。
那个开发教程也只是讲的前台啊。关于后台数据的交流并没有详细的解答。不可能只是改改前台啊。
|
|