About 28,800,000 results
Open links in new tab
  1. How to Open a Database in SQL Server? - GeeksforGeeks

    May 24, 2024 · In this article, we will explore two methods to open a database in SQL Server such as using SQL Server Management Studio (SSMS) and using Transact-SQL (T-SQL) commands. These methods provide flexibility and whether through a graphical interface or a …

  2. SQL DATABASE - W3Schools

    The CREATE DATABASE command is used is to create a new SQL database. The following SQL creates a database called "testDB": Tip: Make sure you have admin privilege before creating any database. Once a database is created, you can check it in the list of databases with the following SQL command: SHOW DATABASES;

  3. SQL USE Database Statement - GeeksforGeeks

    Dec 27, 2024 · The USE DATABASE statement is a command in certain SQL-based database management systems that allows users to select and set a specific database as the default for the current session. By selecting a database, subsequent queries are executed within the context of that database, making it easier to i

  4. Lesson 1: Connecting to the Database Engine - SQL Server

    When you install the SQL Server Database Engine, the tools that are installed depend upon the edition and your setup choices. This lesson reviews the principal tools and shows how to connect and perform an essential function (authorizing more users).

  5. SQL Select Database - GeeksforGeeks

    Nov 27, 2024 · The select query in SQL is one of the most commonly used SQL commands to retrieve data from a database. With the select command in SQL, users can access data and retrieve specific records based on various conditions, making it an essential tool for managing and analyzing data. In this article, we’ll

  6. Opening database file from within SQLite command-line shell

    Jan 30, 2012 · I think the simplest way to just open a single database and start querying is: sqlite> SELECT * FROM table_name ... Notice: This works only for versions 3.8.2+. The command within the Sqlite shell to open a database is .open. The syntax is, If it is a new database that you would like to create and open, it is.

  7. SQL Tutorial - W3Schools

    Our SQL tutorial will teach you how to use SQL in: MySQL, SQL Server, MS Access, Oracle, Sybase, Informix, Postgres, and other database systems. With our online SQL editor, you can edit the SQL statements, and click on a button to view the result. Click on the "Try it Yourself" button to see how it works.

  8. SQL - SELECT Database, USE Statement - Online Tutorials Library

    Learn how to use the SQL SELECT statement to retrieve data from a database effectively. Explore examples and best practices.

  9. how to open a database in sqlplus which is already created

    Jan 11, 2014 · There might a reason why the database isn't open and/or mounted. Perhaps it failed to open? In that case, ALTER DATABASE OPEN is likely to result in an error other than ORA-01507. If so, the folks on https://dba.stackexchange.com/ should be able to help you.

  10. SQL 101: a Beginner’s Guide to SQL Database Programming

    Mar 20, 2025 · Understanding SQL: The Language of Databases. To work with a relational database, you need SQL (Structured Query Language).When you need information from a database, you use SQL queries.A query is simply a request for specific data, written in a way that resembles plain English.

  11. Some results have been removed