Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

MySQL in Cloudera

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

[cloudera@quickstart ~]$ mysql -u root -p

Enter password: cloudera

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 15

Server version: 5.1.73 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show databases;

+--------------------+

| Database |

+--------------------+

| information_schema |

| cm |

| firehose |

| hue |

| metastore |

| mysql |

| nav |

| navms |

| oozie |

| retail_db |

| rman |

| sentry |
+--------------------+

12 rows in set (0.04 sec)

mysql> use retail_db;

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A

Database changed

mysql> select * from customers limit 10;

| customer_id | customer_fname | customer_lname | customer_email | customer_pass


word | customer_street | customer_city | customer_state | customer_z
ipcode |

+-------------+----------------+----------------+----------------+--------------
-----+-----------------------------+---------------+----------------+-----------
-------+

| 1 | Richard | Hernandez | XXXXXXXXX | XXXXXXXXX


| 6303 Heather Plaza | Brownsville | TX | 78521
|

| 2 | Mary | Barrett | XXXXXXXXX | XXXXXXXXX


| 9526 Noble Embers Ridge | Littleton | CO | 80126
|

| 3 | Ann | Smith | XXXXXXXXX | XXXXXXXXX


| 3422 Blue Pioneer Bend | Caguas | PR | 00725
|

| 4 | Mary | Jones | XXXXXXXXX | XXXXXXXXX


| 8324 Little Common | San Marcos | CA | 92069
|

| 5 | Robert | Hudson | XXXXXXXXX | XXXXXXXXX


| 10 Crystal River Mall | Caguas | PR | 00725
|

| 6 | Mary | Smith | XXXXXXXXX | XXXXXXXXX


| 3151 Sleepy Quail Promenade | Passaic | NJ | 07055
|

| 7 | Melissa | Wilcox | XXXXXXXXX | XXXXXXXXX


| 9453 High Concession | Caguas | PR | 00725
|
| 8 | Megan | Smith | XXXXXXXXX | XXXXXXXXX
| 3047 Foggy Forest Plaza | Lawrence | MA | 01841
|

| 9 | Mary | Perez | XXXXXXXXX | XXXXXXXXX


| 3616 Quaking Street | Caguas | PR | 00725
|

| 10 | Melissa | Smith | XXXXXXXXX | XXXXXXXXX


| 8598 Harvest Beacon Plaza | Stafford | VA | 22554
|

+-------------+----------------+----------------+----------------+--------------
-----+-----------------------------+---------------+----------------+-----------
-------+

10 rows in set (0.00 sec)

mysql> select * from orders limit 10;

+----------+---------------------+-------------------+-----------------+

| order_id | order_date | order_customer_id | order_status |

+----------+---------------------+-------------------+-----------------+

| 1 | 2013-07-25 00:00:00 | 11599 | CLOSED |

| 2 | 2013-07-25 00:00:00 | 256 | PENDING_PAYMENT |

| 3 | 2013-07-25 00:00:00 | 12111 | COMPLETE |

| 4 | 2013-07-25 00:00:00 | 8827 | CLOSED |

| 5 | 2013-07-25 00:00:00 | 11318 | COMPLETE |

| 6 | 2013-07-25 00:00:00 | 7130 | COMPLETE |

| 7 | 2013-07-25 00:00:00 | 4530 | COMPLETE |

| 8 | 2013-07-25 00:00:00 | 2911 | PROCESSING |

| 9 | 2013-07-25 00:00:00 | 5657 | PENDING_PAYMENT |

| 10 | 2013-07-25 00:00:00 | 5648 | PENDING_PAYMENT |

+----------+---------------------+-------------------+-----------------+

10 rows in set (0.00 sec)

You might also like