I have a problem inserting the records of a table with the BULK INSERT command.
BULK
Insert product from 'C: \ csv \ products.csv' with (firstrow = 2, fieldterminator = ', ', rowterminator =' \ n ')
This is the error that com...
I have created the following table in a SQL database:
create table session(
SessionId int auto_increment unique,
SessionIni datetime,
SessionFin datetime,
UsHGTAG int,
PcId int,
primary key (SessionId)
);
How...
Good I am doing modifications of the Bd from manners. I have everything done but it returns an error that I could not do the update, any suggestions ???
The data to the modal sent them like this:
<script>
$(document).ready(fun...
The case is as follows, I have two related tables in postgres, understand
Urbanization and Houses
in Urbanizacion we have the following data
idurb(PK-NoIncremental,varchar)| nombreurb | calle | idcasas(el campo
idcasas es una FK )
and...
I am trying to access the table of my bd, to change a value "revision" (now it is worth 1 and I want to pass to 2) of a specific row using its id.
Although the error gives me at the time of ending the connection, I think I'm doing the query w...
In a table I have the CM1_CUENTA field where a user can have many accounts but I need to know if among all of them exists the numbers 2365xxxx or 53152001 to perform an action and if none exists, perform another action.
consulta2 = "SELECT * F...
I'm really not sure how to attack this problem.
I have a users table:
id nombre dato
1 juan 1a
2 pedro 2b
3 paco 3c
An Excel document with the name document :
A
1 01a
2 02b
3 03c
My intention is that through a PH...
is a condominium payment system and it is required to show if the owners paid in the range of 1 to 5 of each month I have the following but it does not do anything to me, it remains blank and the table does have data
<?php
session_st...
I'm having a problem.
This is my domain:
Class1
List classes2;
Class2
Class3 class3;
Class4 class4;
To create class 2, I consult a context that returns Class 3 and Class 4 (both 2 already exist)
After creating it (class2),...
I'm trying to make a quick add button to the cart but I have a problem and it is that I get the error:
Can not read property 'value' of undefined '
I am using ajax and php. I do not know what the problem could be, that is why I come to...