Skip to main content
-1 votes
2 answers
712 views

The professor asked us to create two tables and alter them. create table student ( name varchar(25) not null, std_num int(12), std_num(primary) ); When I click "Run SQL", it ...
Rama's user avatar
  • 1
0 votes
1 answer
340 views

So recently i started a project on Python with Flask as a newbie and wanted to create a "Register and Login Page" everything was going well. But when I arrived to create a table in database ...
Sk444's user avatar
  • 1
-2 votes
1 answer
135 views

I put and did not put AUTOINCREMENT for id in person table as shown below: CREATE TABLE person ( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT # ↑↑↑↑↑↑↑↑↑↑↑↑↑ ); CREATE TABLE person ...
Super Kai - Kazuya Ito's user avatar
0 votes
1 answer
106 views

I need help creating database tables from html tables. Right now I'm just manually doing it. I have a html doc that has all the data but I don't know what the best way to extract the data. <html ...
e417927's user avatar
  • 19
-1 votes
2 answers
57 views

ASP.NET MS SQL table: tblPets ID (123456789) AnimalType (Dog, Cat, Goldfish...) AnimalName (Rudolf, Ben, Harold...) CountryCode (US, AU..) StateCode (CA, NY...) CityCode (AK, LA...) IsMammal (True, ...
user1946932's user avatar
0 votes
1 answer
300 views

I'm trying to get the columns name from "users" table in my database using detFieldNames function in codeigniter 4 but something went wrong. Here is the error: Error Model class: class ...
sana khalid's user avatar
0 votes
1 answer
1k views

I am using DynamoDB under Python environment and I would like to use the following DynamoDB as an example: id time value 1 1 1 2 2 3 1 2 4 1 3 4 1 4 6 I would like to have a table that has unique id ...
Winston's user avatar
  • 1,446
0 votes
1 answer
403 views

I would like to store upwards of 100 time series in DynamoDB for each user. The data is aggregate monthly counts and is used for comparing monthly usage to permitted usage under varying subscription ...
good1492's user avatar
  • 251
0 votes
1 answer
162 views

I have two types of users. For example: Male 2 Female Now I have created a table of 'users' that holds all the common information and 'males' and 'females' will hold specific information related to ...
Istiyak Sheyam's user avatar
4 votes
1 answer
1k views

On SQLite, I displayed the table "user" as shown below but "Null" is not displayed so I cannot differentiate between "Null" and Blank(Empty String): sqlite> .header on ...
Super Kai - Kazuya Ito's user avatar
1 vote
4 answers
209 views

I'm trying to write a PL/SQL script that searches the entire database for a string and report the tables and columns it finds it in. It looks like this: DECLARE ncount NUMBER; vwhere VARCHAR2(1000)...
gib65's user avatar
  • 2,039
0 votes
1 answer
72 views

I have 2 tables i.e employee details and employee designation history. Employee details table - EMPID , Name , Age ,Gender. (EmpID - Primary Key) Designation history table - EMPID , Startdate , ...
sumedh patil's user avatar
0 votes
1 answer
5k views

I have created database table ZSP_EMP_DET inside which I am performing CRUD operations by providing values through screen . So I have tried to find if record is already present in table or not and if ...
sumedh patil's user avatar
2 votes
3 answers
3k views

I have table and query to select data from row to column like this: id | type | data ----------------------- 1 | Name | John 1 | Gender | Male 1 | Code | 1782 2 | Name |...
Reus ellmy's user avatar
0 votes
1 answer
2k views

I have example table like this : type value ----------------------- Name | John Gender | Male Address | New City Phone | 62813 etc... | etc... I want to make ...
Reinardus Hans's user avatar

15 30 50 per page
1
2 3 4 5
21