I am working with the Api rest service in Codeigniter, my query is:
I have a json that returns all the students of the mini system1, in the mini system 2 I have a table called Assign where I keep the id of the student and other data, my probl...
Trying to load data into a table gives me this error.
Error Code 1148: The used command is not allowed with this MySQL version
The function I use is:
load local data infile 'C: \ Users \ xSyn \ File.csv'
I've been searching t...
#include <stdio.h>
#include <string.h>
char rot13(char palabra[]) { //char *palabra
int y = (short) strlen(palabra);
char abc[27]="abcdefghijklmnopqrstuvwxyz";
for (int i = 0; i < y ; ++i) {
if(palabra[i]<'m'...
I have 3 tables: Draw, player and round, and in turn a table in common for the three having as attributes: id, id_draw, player_id, id_ronda.
What I do not know, is how to put together this type of relationship and how to insert data. Since in...
I have the following dataframe in python:
months = [1,2,3,4,5,6,7,8,9,10,11,12]
data1 = [100,200,300,400,500,600,700,800,900,1000,1100,1200]
df = pd.DataFrame({
'month' : months,
'd1' : data1,...
I need to create a page for a job at school, and I need to put the credits at the end of the page, I'm only allowed to do it with html or css in the notebook.
At the moment this is my homepage.
ul {
list-style-type: none;
ma...
What happens is that I am trying to do a search in two tables and through cursors with parameters do the calculation of a tax and insert the data in a new table called taxes. I have three tables, AUTOMOVIL , AVALUOS e IMPUESTOS...
I have the holiday table which has two fields, one that is authorize_id and request_id, makes references to the same employee table, I can already show
the name of the one who authorizes by means of the id, but I do not know how to show the name...
I currently have a hidden div
<div id="llave" style="display: none">
//aca esta el contenido
</div>
but what I'm looking for is that when I finish loading the page it shows up.
I was trying like this:
<script type="...
This is how I declare my struct, but at the time of saving it saves twice the data int semaforo; .
struct mystruct
{
char arr[MAXBUF];
}es;
struct mystruct *entrada;
char g[20]={"11111111111111111118"};
So I save it and print it...