且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在SQL Server2005中创建选择查询

更新时间:2023-02-06 12:18:16

^ ]扫一眼,这将对您有帮助.
Select Query[^] just have a glance this will help you.


您提到的无效对象名称" tb1""错误只是表示数据库中没有表tb1. .请确保您已经创建了表tb1.

希望这会有所帮助.
一切顺利.
The error that you have mentioned "Invalid object name ''tb1''" simply says that the table tb1 is not there in the database. Please make sure that you have table tb1 already created.

Hope this helps.
All the best.


您的错误表示表在当前架构中不存在
验证连接的架构是否正确.

例如:

Your Error Means that table does not exist in the Current Schema
Verify your schema , that is connected is correct or not.

example :

Select no, name
from <schema>.dbo.tb1
where name='rahul' ;</schema>