C# SQL命令给出错误
本文关键字:出错 错误 命令 SQL | 更新日期: 2023-09-27 18:34:11
Sqlcommand cmd=new Sqlcommand();
cmd.commandtext="select username, password from '"user'" where username = 'admin'
and password = 'password123' ";
adp.fill(ds);
现在上面的查询在 mysql 和 mssql 中成功执行,但我的 C# 代码给出错误不正确的 sytax "user"我错在哪里?注:-I希望上面的查询在 MySQL 和 mssql 中都运行,并且还要注意 user is 保留关键字在 sql 中
对于 MySQL 使用
from `user`
供 SQL Server 使用
from [user]
供甲骨文使用
from "user"