Yahoo Αναζήτηση Διαδυκτίου

Αποτελέσματα Αναζήτησης

  1. 3 Νοε 2014 · SELECT table_name FROM information_schema.tables; To get the name of the tables from a specific database use: SELECT table_name FROM information_schema.tables. WHERE table_schema = 'your_database_name'; Now, to answer the original question, use this query: INSERT INTO table_name.

  2. The SELECT statement is used to select data from a database. The data returned is stored in a result table, called the result-set. SELECT Syntax. SELECT column1, column2, ... FROM table_name; Here, column1, column2, ... are the field names of the table you want to select data from.

  3. The SELECT statement is used to pull information from a table. The general form of the statement is: SELECT what_to_select FROM which_table WHERE conditions_to_satisfy; what_to_select indicates what you want to see.

  4. 27 Ιουλ 2020 · In this article, I have explained how we can generate the schema of an existing MySQL database using MySQL Workbench. Moreover, I have also explained the SELECT statement in the MySQL database server.

  5. mysql> SELECT DATABASE(); +-----+ | DATABASE() | +-----+ | menagerie | +-----+ If you have not yet selected any database, the result is NULL. To find out what tables the default database contains (for example, when you are not sure about the name of a table), use this statement:

  6. To write a SELECT statement in MySQL, you use this syntax: SELECT select_list. FROM table_name; Code language: SQL (Structured Query Language) (sql) In this syntax: First, specify one or more columns from which you want to select data after the SELECT keyword. If the select_list has multiple columns, you need to separate them by a comma (,).

  7. The SELECT statement is used to pull information from a table. The general form of the statement is: SELECT what_to_select . FROM which_table . WHERE conditions_to_satisfy; what_to_select indicates what you want to see.

  1. Γίνεται επίσης αναζήτηση για