当MariaDB无法分配标准SQLSTATE代码时,将HY000使用一般错误或一般错误。 描述错误的字符串,在这种情况下为No database selected。 随着添加新功能,不断添加新的错误代码。有关确定的列表,请参见该工具生成的文件sql/share/errmsg-utf8.txt以及include/mysqld_error.h构建目录中的内容comp_err。同样,perror工具可用于...
SELECT * FROM x; ERROR 1046 (3D000): No database selected Contents Shared MariaDB/MySQL error codes MariaDB-specific error codes There are three pieces of information returned in an error: A numeric error code, in this case 1046. Error codes from 1900 and up are specific to MariaDB,...
1046 3D000 ER_NO_DB_ERROR No database selected 1047 08S01 ER_UNKNOWN_COM_ERROR Unknown command 1048 23000 ER_BAD_NULL_ERROR Column '%s' cannot be null 1049 42000 ER_BAD_DB_ERROR Unknown database '%s' 1050 42S01 ER_TABLE_EXISTS_ERROR Table '%s' already exists 1051 42S02 ER_BAD_TABLE...
delete from user where user='账户名'; 1 出现: ERROR 1046 (3D000): No database selected 1 因为是直接使用 SQL 语句的方式来删除账户,所以必须先选择 mysql 自身的数据库: use mysql; --- 作者:deniro_li 来源:CSDN 原文: 版权声明:本文为博主原创文章,转载请附上博文链接! mysql远程连接 Host * is...
> 1046 - No database selected > 时间: 0.062s 然后在 mariadbspider 中,插入四条数据: INSERTINTOs(code)VALUES('a'); INSERTINTOs(code)VALUES('b'); INSERTINTOs(code)VALUES('c'); INSERTINTOs(code)VALUES('d'); 如果分别打开三个实例,你会发现,插入的数据只会出现在 mariadbtest1 中出现,因...
报错:ERROR 1046 (3D000) at line 22: No database selected 无数据库 vim /mnt/userdata.sql CREATE DATABASE userdata; USE userdata; 1. 2. mysql -uroot -predhat < /mnt/userdata.sql 方法2:(需要把之前写的配置文件删掉) mysql -uroot -predhat -e “CREATE DATABASE userdata;” ...
sudo...systemctl enable mariadb 启动时禁用 sudo systemctl disable mariadb 状态 sudo systemctl status mariadb...如果没有配置好,数据库不对应等,可能会出现: > 1046 - No database selected > 时间: 0.062s 然后在 mariadbspider 中,插入四条数据: INSERT...mariadbtest1 中出现,因为这个表只绑定了...
MariaDB[(none)]>select user,host from user; 就可以查看到数据中的所有用户信息。 代码语言:javascript 复制 MariaDB[(none)]>select user,host from user;ERROR1046(3D000):No database selected MariaDB[(none)]>select user,host from mysql.user;+---+---+|User|Host|+---+---+|root|%||web...
MySQL 的所有数据库用户信息是存储在 user 数据表中的。 可以在登录成功数据后运行 SQL: MariaDB [(none)]> select user,host from user; 就可以查看到数据中的所有用户信息。 MariaDB [(none)]> select user,host from user; ERROR 1046 (3D000): No database selected ...
Server version: 5.5.64-MariaDB MariaDB Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 2)选择数据库,否则执行指令出错No database selected ...