2016-07-21 15 views
-3

Here's the pic of the sql server window.It is showing an error that the Table 'Student' doesn't exists.You can see in the pic that there is a database named as 'School1' and there exists the table 'Student'. Any help will be appreciated.... THANKS無効なオブジェクト名 'スチューデント

+3

* master *データベースにはありません。* school1 *は、左上のドロップダウンにある現在のデータベースを変更します。 –

答えて

4

は:School1 『「マスター。データベースはこのテーブルを含んでいない接続へのデータベースの変更』添付のスクリーンショットを確認してください:

enter image description here

+0

ありがとうございました。 –

1

をしてくださいお試しください

USE [School1] 
GO 

Select * from Student 
1

リンクのみの質問は、好きなだけ多くの情報をテキストとして入力してください。

すぐに問題が発生するのは、SQL Serverにオブジェクトの検索場所を教えないということです。

SELECT * 
FROM  School1.dbo.Student 
関連する問題