在SQL中怎么查询一条记录

2024-12-25 06:49:18
推荐回答(5个)
回答1:

查询表记录的语句一般就是select * from 【表名】 where 【条件】;任何数据库入门的书上都有。
如果查不到那你先查看一下你的这个表是不是属于你当前登录数据库的用户的(以oracle为例):
select * from user_tables where table_name='A' 如果没有结果,那即使你用上述select * from A where ID=Y;也查不到的。

回答2:

select *
from DB
where ID=Y

回答3:

假设y=23
select * from a where id=23

回答4:

USE DB
GO

SELECT * FROM A WHERE ID=Y

回答5:

use DB
go
select * from [表A]
where ID=Y