Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Use MySQL Command Line Interface
How To Use MySQL Command Line Interface? - PHP Script Tips - Working with MySQL Database
✍: FYIcenter.com
MySQL server comes with a command line interface, which will allow you to operate with the server with SQL statements and other commands. To start the command line interface, you can run the \mysql\bin\mysql program. The tutorial exercise below shows you how to use the command line interface to create a table and insert a row to table:
>\mysql\bin\mysql Welcome to the MySQL monitor. Commands end with ; or \g. mysql> use test; Database changed mysql> CREATE TABLE fyi_links (url varchar(80)); Query OK, 0 rows affected (0.58 sec) mysql> INSERT INTO fyi_links VALUES ('dev.fyicenter.com'); Query OK, 1 row affected (0.38 sec) mysql> SELECT * FROM fyi_links; +-------------------+ | url | +-------------------+ | dev.fyicenter.com | +-------------------+ 1 row in set (0.00 sec) mysql> DROP TABLE fyi_links; Query OK, 0 rows affected (0.34 sec) mysql> quit; Bye
2007-04-18, 5413👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - How to prevent my .NET DLL to be decompiled? By design .NET embeds rich M...
How can you determine the size of an allocated portion of memory? You can't, really. free() can , bu...
What Is the Difference between Formal Parameters and Actual Parameters? - Oracle DBA FAQ - Creating ...
How To Control Table Widths? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells Usually, b...
What is the significance of Finalize method in .NET? .NET Garbage collector does almost all clean up...