如何获取字段值-初学
SQL code
select id , tb_id from `tb_sys_table_col` where tb_name='tb_ceshi' and col_name='增加';
----如何同时获取id , tb_id 两个字段值 ,不要使用游标
------解决方案--------------------你这不是可以了吗 ? 你说的获取是指在哪里获取?
------解决方案--------------------select id , tb_id into @aid,@tbid from `tb_sys_table_col` where tb_name='tb_ceshi' and col_name='增加';