Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データベース名がSQL Server 2008にすでに存在するかどうかを確認したい。そうでない場合は、データベースを作成する必要があります。どうすればこれを確認できますか?
show databases;SQLクエリを使用できます。
show databases;
起動クエリで実行している場合は、create if not existsSQL ステートメントを使用して 2 つのアクションを組み合わせます (正確な構文については、DBMS の実際のドキュメントを参照してください)。
create if not exists