sql语句where条件查询

2025-01-06 02:55:16
推荐回答(5个)
回答1:

  必须指定限定查询。

  格式:

  [SELECT] [{DISTINCT}] [* |具体的列别名FROM表名称] [{WHERE 条件(s)}]

  例:查询出工资大5000的雇员的信息。

  数学计算中,工资大于5000:sal > 5000

  l  SELECT * FROM emp WHERE sal > 4000 ;

  输出如下:

  

回答2:

sql="select * from topic where name='"&rs("username")&"'"
字符变量要加引号

回答3:

表达中最终字串应该为:name='张三'
要用单引号或双引号将字串值包括超来

给一行我的程序里调试OK的代码给参考:
sqltext = "select * from incfile where name=" + Chr(34) + incFileName + Chr(34)

回答4:

sql="select * from topic where name='"&rs("username")&"'"
字符变量要加引号
回答者: lzp4881 - 江湖少侠 六级 10-30 22:17

回答5:

sql="select * from topic where name='"&rs("username")&"'"
字符变量要加引号
回答者: lzp4881 - 江湖少侠 六级