Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
2 answers
705 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
-2 votes
1 answer
129 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
-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
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
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
1 vote
4 answers
207 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
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
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
0 votes
1 answer
410 views

My application starts with the login menu, a user provides his login credentials and the process of comparing passwords (hashed) goes on, logged in if everything is fine and error handlers kick in if ...
UnkownReality's user avatar
0 votes
1 answer
837 views

I have this Menu for a restaurant with food categorized into different groups i.e.: For the Breakfast (food here) Salads (food here) Cold Beverages (drinks here) Hot Beverages (drinks here) etc. ... ...
UnkownReality's user avatar
0 votes
1 answer
654 views

I have an application that has the potential to use either an Oracle, MySQL, or SQL Server. In a few queries, I need to use the "DUAL" table, for example: SELECT (CASE WHEN EXISTS (SELECT 1 ...
user3163495's user avatar
  • 3,968
1 vote
2 answers
91 views

I created a button in the table to implement the function of deleting data on the site, I did everything according to the video tutorial and after I did everything refreshing the page I got an error: ...
Mineral's user avatar
  • 51
3 votes
1 answer
373 views

I would appreciate any help in ammending my script to add row call back function in database tables. Using datatables I want to show the row number. I have found the code provided by @Pehmolelu in ...
user avatar
0 votes
1 answer
492 views

I have a json file which contains a large size of data such as place id, latitude, longitude and date. I want to pass this data from one activity to another. When I am doing this same with Intent the ...
Mysterious's user avatar
0 votes
2 answers
2k views

It's more a confirmation of what I thought rather than a question. Can one change the isolation level on a table-basis in SQL Server or can it only be defined/changed on a session level as by the ...
Eugene Lycenok's user avatar
1 vote
1 answer
5k views

Is there a way to catch all schema + table name info in a single command through Hive in a similar way to SELECT * FROM information_schema.tables from the PostgreSQL world? show databases and show ...
Terru_theTerror's user avatar
0 votes
0 answers
400 views

I am using sqlite3 for python to build a notes management application using tkinter. I wanted to know how can I create a separate table to handle each user's data (contains id, tags and memo for each ...
vibrant32's user avatar
0 votes
1 answer
1k views

I have 3 tables called patients, customers and deliveries. Those tables are in the same database called db. All the tables equally have id, first_name, last_name, gender and only deliveries table has ...
sniffingdoggo's user avatar
-3 votes
1 answer
3k views

I don't know much about SAP but I need the annual sales (the total amount of what was sold in a certain year) for DSO calculation. In which SAP table is this stored? VBAK? Also for this calculation ...
Martin's user avatar
  • 1
1 vote
0 answers
765 views

I have a CSV with 44 columns and I have a table with 21 columns. Need to check of the columns in CSV along with the data matches with columns and data in database table I have created 2 class (one ...
Dolly's user avatar
  • 117
1 vote
1 answer
402 views

I'm trying to count the rows in all the tables in the database. Since the answer I'd like to get must differentiate between different schemas I also take into account the schema that a particular ...
balkon16's user avatar
  • 1,467
0 votes
0 answers
909 views

I am using postgresql and pgadmin. I had a table (about 12 million rows) from another database which I wanted to transfer to a table in a new database. So I created a custom backup of that table and ...
Mike's user avatar
  • 379
0 votes
3 answers
59 views

Could you guys help me to make SELECT query for my simple case: Table A: UserID UserName 10 John 11 Mike 12 Matt Table B: SessionID UserID SessionTime 124 ...
MikZ's user avatar
  • 364
3 votes
1 answer
2k views

I have a postgresql database connected to with django. In database there is lots of big tables which I want their row count. Because of large size of tables this takes a lot of time to execute. I ...
mohammad's user avatar
  • 2,218
1 vote
1 answer
569 views

I'm running a script with several million update statements like this: UPDATE data SET value = 0.9234 WHERE fId = 47616 AND modDate = '2018-09-24' AND valueDate = '2007-09-01' AND last_updated < ...
Adam's user avatar
  • 5,515

1
2 3 4 5
7