diff --git a/commands/sql/sql.drush.inc b/commands/sql/sql.drush.inc
index 37dbd4a..dc094f1 100644
--- a/commands/sql/sql.drush.inc
+++ b/commands/sql/sql.drush.inc
@@ -198,6 +198,7 @@ function sql_drush_command() {
   $items['sql-cli'] = array(
     'description' => "Open a SQL command-line interface using Drupal's credentials.",
     'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
+    'allow-additional-options' => TRUE,
     'options' => $options + $db_url,
     'aliases' => array('sqlc'),
   );
@@ -256,6 +257,9 @@ function _drush_sql_connect($db_spec = NULL) {
   switch (_drush_sql_get_scheme($db_spec)) {
     case 'mysql':
       $command = 'mysql';
+      if (drush_get_option('A', FALSE)) {
+        $command .= ' -A';
+      }
       break;
     case 'pgsql':
       $command = 'psql';
