mysql-error-1064

    0热度

    1回答

    public void Deposite() throws Exception { try { Class.forName("com.mysql.jdbc.Driver"); String url = "jdbc:mysql://localhost:3306/bank"; Connection con = DriverManager.g

    -2热度

    1回答

    我找不到错误在MYSQL语法: "SELECT customer.CustomerCode, customer.CustomerName, customer.CustomerAddress, customer.CustomerHandphone, customer,CustomerEmail, product.ProductCode, product.ProductName, product.Pr

    0热度

    1回答

    我有数据在MySQL中,看起来像这样... | ProjectUID | dataStartDate | | F2EAACC7-607F-E611-91D1-34028608A344 | 2017-04-14 10:00:00 | | F2EAACC7-607F-E611-91D1-34028608A344 | 2017-02-23 16:00:00 | | F2EAACC7-6

    0热度

    3回答

    这是我创建表的语法: Create table Recipe( Recipename varchar(30), Cuisine varchar(20), Skilllevel varchar(13), Ingredients varchar(400), Procedure varchar(1000), Cookingtime int(30)

    -2热度

    1回答

    我有两个mysql查询,但获得不同的结果两个查询,虽然第一个查询似乎是给更多的结果。 MySQL [mydb1]> select count(*) from user_id where create_time>='2017-07-28' and create_time<='2017-07-31'; +----------+ | count(*) | +----------+ | 651

    0热度

    1回答

    这是我的MySQL程序。执行此操作时出错。 DELIMITER // CREATE PROCEDURE GET_ORDER_HISTORY_LIST(IN distid int) BEGIN SELECT ort.order_id, ort.transaction_id, ort.user_id, ort.transaction

    0热度

    2回答

    我有一个像MySQL数据库中附加图像的表。 我试图找回基于SUM(货运)列排序的数据。为此,我使用了下面的查询。 SELECT货主国家 FROM CountryDetails GROUP BY货主国家 ORDER BY SUM(货运)ASC 当我运行此我得到的结果如下图所示。 如果我运行下面的查询我得到的结果如下图所示。没关系。 SELECT货主国家,货主国家 FROM CountryDetail

    -1热度

    1回答

    public void Deposite() throws Exception { try { Class.forName("com.mysql.jdbc.Driver"); String url = "jdbc:mysql://localhost:3306/bank"; Connection con =

    0热度

    1回答

    我会直接指向这一点。 这是我表 Create Table Beneficios( IdBeneficio int unsigned primary key auto_increment not null, Nombre varchar(150)not null, Estado boolean default true not null, Descripcion varchar(300)not

    0热度

    1回答

    我对MySQL很新。我必须调用带有输出参数的存储过程。我在互联网上搜索了很多,但我没有找到正确的解决方案来解决我的问题。如果我用@outputParamName调用存储过程,它说我在NULL附近有一个错误#1064。如果我使用'outputParamName'而不使用@调用过程,那么它表示它不是一个OUT或INOUT正确的参数。有人可以帮助我吗? 存储过程只需要检查,如果在同一行存在的姓和名DB: