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