Fill in the blanks to create a table with three columns: ''id'' as a primary key, username and password of type varchar. test ( | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 5

Fill in the blanks to create a table with three columns: ''id'' as a primary key, username and password of type varchar. test (

21st Oct 2016, 12:18 PM
nikita borase
nikita borase - avatar
9 Answers
+ 2
Fill in the blanks to create a table with two columns: ''id'' as a primary key integer, and ''name'' of type varchar.
19th Feb 2021, 10:21 AM
Sayyora Alimjonova
Sayyora Alimjonova - avatar
+ 1
CREATE TABLE test ( id int , username varchar (30), password varchar(20), PRIMARY KEY (id) );
23rd Mar 2018, 8:15 AM
Mustafa Warsame Ali
Mustafa Warsame Ali - avatar
+ 1
varchar 50
14th Sep 2022, 5:12 PM
Oriyomi Sarah
Oriyomi Sarah - avatar
0
CREATE TABLE INT varchar PRIMARY KEY THAT IS CORRECT
22nd May 2017, 12:22 PM
Ivan Kulaš
0
CREATE TABLE test ( id int , username varchar (30), password varchar(20), PRIMARY KEY (id) );
8th Apr 2018, 2:02 PM
Mahnoor Shahzad
Mahnoor Shahzad - avatar
0
SELECT name, (cost) FROM items WHERE name '%boxes of frogs' AND seller_id (68, 6, 18) LIKE MIN NOT AVG BETWEEN IN i don't understand this one help?
26th Oct 2018, 2:06 PM
Heather
0
Answer is TABLE, NOT, AUTO_INCREMENT, and PRIMARY KEY.
9th Mar 2020, 12:36 AM
Imanuel Wicaksono
Imanuel Wicaksono - avatar
0
SELECT name, MIN (cost) FROM items WHERE name LIKE '%boxes of frogs' AND seller_id IN (68, 6, 18) LIKE MIN NOT AVG BETWEEN IN
10th Mar 2020, 2:00 PM
NALAM SRI SASANKA PRANATHI
- 2
create table test( id number(10) primary key, username varchar(20), password varchar(20)); //I created table by assuming username and password are not referring any keys
10th Nov 2016, 1:57 PM
shilpa
shilpa - avatar