求sql查询语句
t_a{
id ,
name,
age,
pid, 对应t_b(id)
}
t_b{
id,
ywlx,
}
本人想用
这种类型的查询
String sql = "select name,age,ywlx from t_a where 1=1";
String sql+="(其他的条件补充)"; --其他所需的条件加在这行里面,
上面的"select name,age,ywlx from t_a where 1=1";语句固定,
试问有没有什么好的办法来处理????
急!!! 在线等。。。。。
谢谢!!!
String sql+="(其他的条件补充)"; --其他所需的条件加在这行里面,
String sql+="and 条件语句"; --不就OK?
ywlx这个字段他会报 找不到 的 我第一条sql语句里面就from t_a呀!!!!!!!!!!!!!!!
有没有其他好的方法
请教~!!!!
String sql = "select name,age,ywlx from t_a where 1=1";
String sql+="(其他的条件补充)"; --其他所需的条件加在这行里面,
上面的"select name,age,ywlx from t_a where 1=1";语句固定,
那你可以这样子写:
SQL code:
String sql = "select name,age,ywlx
相关问答:
本人c#新手 可是要求要用c# ,sql2000开发c/s的工作流,一头雾水,请大家帮忙帮忙,给点思路,说的约具体越好,我也好往那个方面去学习
http://www.hxzi.com/view/61402.html
B/S版的,基本思想应该差不多的。。 ......
with adod_dict do
begin
close;
commandtext:='select bgqxcode,count(*) wjsl from wscl_wsda_file where wjnd=:tnd group by bgqxcode'; ......
我EXCEL中一个单元格的数据如 "2009-01","8949-232"
将这个数据粘贴到PL/SQL中的一个表中后,数据确是成为了 2009-01,8949-232 ,把所有的""都没了,
如何弄呢?请大家试 ......
DateTime startTime=DateTime(em_1.Text)
DateTime endTime=DateTime(em_2.Text)
string sql
sql = dw_1.GetSQLSelect()+"Where (StartTime> '"+startTime+"') and (EndTime ......
删除northwind所有表中所有的数据
SQL code:
--删除当前数据库所有表中的数据
sp_MSforeachtable 'Delete from ?'
sp_MSforeachtable @command1="Delete from ? "
sp_MSforeachtable 'Truncate Ta ......