Browse C
Alphabetical listing with fast deep pagination.
81169 items • Page 194 / 1624
CREATE TABLE Student( studentID BIGINT NOT NULL, phone_number BIGINT NOT NULL, f
CREATE TABLE Student( studentID BIGINT NOT NULL, phone_number BIGINT NOT NULL, first_name VARCHAR(25) NOT NULL, last_name VARCHAR(25) NOT NULL, programme VARCHAR(255) NOT NULL, sc…
CREATE TABLE TESTER (id int not null, I_name varchar(30) not null, f_name varcha
CREATE TABLE TESTER (id int not null, I_name varchar(30) not null, f_name varchar(30) not null) CREATE TABLE TEST (test_id int not null, tester_id int not null, test_name varchar(…
CREATE TABLE \" ACTOR \" ( \"ID\" NUMBER(9,0) NOT NULL, \"NAME\" VARCHAR2(100) N
CREATE TABLE "ACTOR" ( "ID" NUMBER(9,0) NOT NULL, "NAME" VARCHAR2(100) NOT NULL, CONSTRAINT ACTOR_PK PRIMARY KEY (ID)); CREATE TABLE "MOVIE" ( "ID" NUMBER(9,0) NOT NULL, "TITLE" V…
CREATE TABLE \" ACTOR \" ( \"ID\" NUMBER(9,0) NOT NULL, \"NAME\" VARCHAR2(100) N
CREATE TABLE "ACTOR" ( "ID" NUMBER(9,0) NOT NULL, "NAME" VARCHAR2(100) NOT NULL, CONSTRAINT ACTOR_PK PRIMARY KEY (ID)); CREATE TABLE "MOVIE" ( "ID" NUMBER(9,0) NOT NULL, "TITLE" V…
CREATE TABLE \" ACTOR \" ( \"ID\" NUMBER(9,0) NOT NULL, \"NAME\" VARCHAR2(100) N
CREATE TABLE "ACTOR" ( "ID" NUMBER(9,0) NOT NULL, "NAME" VARCHAR2(100) NOT NULL, CONSTRAINT ACTOR_PK PRIMARY KEY (ID)); CREATE TABLE "MOVIE" ( "ID" NUMBER(9,0) NOT NULL, "TITLE" V…
CREATE TABLE \" ACTOR \" ( \"ID\" NUMBER(9,0) NOT NULL, \"NAME\" VARCHAR2(100) N
CREATE TABLE "ACTOR" ( "ID" NUMBER(9,0) NOT NULL, "NAME" VARCHAR2(100) NOT NULL, CONSTRAINT ACTOR_PK PRIMARY KEY (ID)); CREATE TABLE "MOVIE" ( "ID" NUMBER(9,0) NOT NULL, "TITLE" V…
CREATE TABLE \" ACTOR \" ( \"ID\" NUMBER(9,0) NOT NULL, \"NAME\" VARCHAR2(100) N
CREATE TABLE "ACTOR" ( "ID" NUMBER(9,0) NOT NULL, "NAME" VARCHAR2(100) NOT NULL, CONSTRAINT ACTOR_PK PRIMARY KEY (ID)); CREATE TABLE "MOVIE" ( "ID" NUMBER(9,0) NOT NULL, "TITLE" V…
CREATE TABLE \" ACTOR \" ( \"ID\" NUMBER(9,0) NOT NULL, \"NAME\" VARCHAR2(100) N
CREATE TABLE "ACTOR" ( "ID" NUMBER(9,0) NOT NULL, "NAME" VARCHAR2(100) NOT NULL, CONSTRAINT ACTOR_PK PRIMARY KEY (ID)); CREATE TABLE "MOVIE" ( "ID" NUMBER(9,0) NOT NULL, "TITLE" V…
CREATE TABLE \" ACTOR \" ( \"ID\" NUMBER(9,0) NOT NULL, \"NAME\" VARCHAR2(100) N
CREATE TABLE "ACTOR" ( "ID" NUMBER(9,0) NOT NULL, "NAME" VARCHAR2(100) NOT NULL, CONSTRAINT ACTOR_PK PRIMARY KEY (ID)); CREATE TABLE "MOVIE" ( "ID" NUMBER(9,0) NOT NULL, "TITLE" V…
CREATE TABLE \" ACTOR \" ( \"ID\" NUMBER(9,0) NOT NULL, \"NAME\" VARCHAR2(100) N
CREATE TABLE "ACTOR" ( "ID" NUMBER(9,0) NOT NULL, "NAME" VARCHAR2(100) NOT NULL, CONSTRAINT ACTOR_PK PRIMARY KEY (ID)); CREATE TABLE "MOVIE" ( "ID" NUMBER(9,0) NOT NULL, "TITLE" V…
CREATE TABLE actor( id INTEGER NOT NULL, name VARCHAR2(100), CONSTRAINT actor_PK
CREATE TABLE actor( id INTEGER NOT NULL, name VARCHAR2(100), CONSTRAINT actor_PK PRIMARY KEY (id)); CREATE TABLE movie( id INTEGER NOT NULL, title VARCHAR2(100), yr NUMBER(4,0), s…
CREATE TABLE birthday (B_MONTH NUMBER, B_DAY NUMBER, B_RANK NUMBER); / INSERT IN
CREATE TABLE birthday (B_MONTH NUMBER, B_DAY NUMBER, B_RANK NUMBER); / INSERT INTO birthday SELECT * FROM hchen.birthday; / COMMIT; / SELECT COUNT(*) FROM birthday;…
CREATE TABLE candidate ( cand_id varchar(12) primary key, -- cand_id name varcha
CREATE TABLE candidate ( cand_id varchar(12) primary key, -- cand_id name varchar(40) -- cand_nm ); CREATE TABLE contributor ( contbr_id integer primary key,…
CREATE TABLE department (DEPARTMENT_ID NUMERIC (4) PRIMARY KEY, DEPARTMENT_NAME
CREATE TABLE department (DEPARTMENT_ID NUMERIC (4) PRIMARY KEY, DEPARTMENT_NAME VARCHAR(20) NOT NULL UNIQUE, LOCATION VARCHAR(20) NOT NULL); CREATE TABLE employee (EMPLOYEE_ID NUM…
CREATE TABLE dimcustomer ( customerid int, customeraltid varchar(10) not null, c
CREATE TABLE dimcustomer ( customerid int, customeraltid varchar(10) not null, customername varchar(50), gender varchar(20), PRIMARY KEY (customerid) ); INSERT INTO dimcustomer(cu…
CREATE TABLE dimcustomer ( customerid int, customeraltid varchar(10) not null, c
CREATE TABLE dimcustomer ( customerid int, customeraltid varchar(10) not null, customername varchar(50), gender varchar(20), PRIMARY KEY (customerid) ); INSERT INTO dimcustomer(cu…
CREATE TABLE dimcustomer ( customerid int, customeraltid varchar(10) not null, c
CREATE TABLE dimcustomer ( customerid int, customeraltid varchar(10) not null, customername varchar(50), gender varchar(20), PRIMARY KEY (customerid) ) INSERT INTO dimcustomer(cus…
CREATE TABLE messages (results VARCHAR2(60)); Write a SQL script that implements
CREATE TABLE messages (results VARCHAR2(60)); Write a SQL script that implements a block that contains a for-loop which increments a counter from 1 to 10 and inserts the counter v…
CREATE TABLE purchase_order (order_number int(11) NOT NULL,order_name char(50) N
CREATE TABLE purchase_order (order_number int(11) NOT NULL,order_name char(50) NOT NULL,customer_address char(50),customer_zip int(5) DEFAULT NULL, customer_city char(50) DEFAULT …
CREATE TABLE rate ( current_interest_rate Decimal (3,2) NOT NULL, account_type C
CREATE TABLE rate ( current_interest_rate Decimal (3,2) NOT NULL, account_type Char (50) NOT NULL , PRIMARY KEY (current_interest_rate, account_type) ); CREATE TABLE accounts (…
CREATE TABLE regions as select * from hr.regions; CREATE TABLE locations as sele
CREATE TABLE regions as select * from hr.regions; CREATE TABLE locations as select * from hr.locations; CREATE TABLE departments as select * from hr.departments; 1. Drop the Depar…
CREATE TABLE store_reps (rep_ID NUMBER(5), last VARCHAR2(15), frst VARCHAR2(10),
CREATE TABLE store_reps (rep_ID NUMBER(5), last VARCHAR2(15), frst VARCHAR2(10), Commchar(1) DEFAULT 'Y', CONSTRAINT "REP_ID" PRIMARY KEY ("REP_ID"));Table created.2.ALTER TABLE s…
CREATE TABLE vendor ( vendor_id int NOT NULL, vendor_name char(50) NOT NULL, con
CREATE TABLE vendor ( vendor_id int NOT NULL, vendor_name char(50) NOT NULL, contact_name char(50), CONSTRAINT vendors_pk PRIMARY KEY (vendor_id) ); I cant find the foreign key fo…
CREATE TABLE world_region ( PARENT_NAME VARCHAR2(30) NOT NULL, CHILD_NAME VARCHA
CREATE TABLE world_region ( PARENT_NAME VARCHAR2(30) NOT NULL, CHILD_NAME VARCHAR2(30) NOT NULL ); / INSERT INTO world_region VALUES('***','Asia'); INSERT INTO world_re…
CREATE THE CODE ON MICROSOFT VISUAL STUDIO.\" C+\" /* Instructions: You are to c
CREATE THE CODE ON MICROSOFT VISUAL STUDIO." C+" /* Instructions: You are to create a program that tracks student grades. When the program launches the user should be presented wi…
CREATE THE TEST BENCH CODE FOR THIS IN VHDL: GARAGE DOOR CONTROLLER library IEEE
CREATE THE TEST BENCH CODE FOR THIS IN VHDL: GARAGE DOOR CONTROLLER library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity garage_door_controller is port ( remt, sen1, sen2, clk,…
CREATE THE TEST BENCH CODE FOR THIS IN VHDL: GARAGE DOOR CONTROLLER library IEEE
CREATE THE TEST BENCH CODE FOR THIS IN VHDL: GARAGE DOOR CONTROLLER library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity garage_door_controller is port ( remt, sen1, sen2, clk,…
CREATE THIS Emulated Computer for Teaching Computer Architecture using Multi Med
CREATE THIS Emulated Computer for Teaching Computer Architecture using Multi Media Logic. Also Describe how this works in detailsPlease attach the logic file with the answer. An e…
CREATE TYPE address_t AS OBJECT ( street VARCHAR2(30), city VARCHAR2(20), state
CREATE TYPE address_t AS OBJECT ( street VARCHAR2(30), city VARCHAR2(20), state CHAR(2), zip CHAR(5) ); / CREATE TYPE address_tab IS TABLE OF address_t; / CREATE TABLE customers (…
CREATE Tables, Entities, Relationships, Keys and Structural constraints In a uni
CREATE Tables, Entities, Relationships, Keys and Structural constraints In a university, we represent data about both students and employees. The university keeps track of each st…
CREATE VIEW open_items_summary AS SELECT vendor_name, (invoice_total - payment_t
CREATE VIEW open_items_summary AS SELECT vendor_name, (invoice_total - payment_total - credit_total) AS balance_due FROM vendors WHERE balance_due IN ( SELECT COUNT(balance_due) A…
CREATING A METHODOLOGY1 John Compton, The president of the company, expressed hi
CREATING A METHODOLOGY1 John Compton, The president of the company, expressed his feelings quite bluntly at the executive staff meeting; We are no longer competitive in the market…
CREATIVE ACTIVITY You\'ve been a tour conductor for years, taking groups of Amer
CREATIVE ACTIVITY You've been a tour conductor for years, taking groups of Americans acr our knowledge of European history and culture; many tour pass mented on how you make the p…
CREDE COMPANY Selling Expense Report For the Quarter Ending March 31 By Month Ye
CREDE COMPANY Selling Expense Report For the Quarter Ending March 31 By Month Year-to-Date Month Budget Actual Difference Budget Actual Difference January February March Open Show…
CREDE COMPANY Selling Expense Report For the Quarter Ending March 31 By Month Ye
CREDE COMPANY Selling Expense Report For the Quarter Ending March 31 By Month Year-to-Date Month Budget Actual Difference Budget Actual Difference January February March Open Show…
CREDIT ANALYSIS Selected risk ratios are presented for 2012, 2011 and 2010 for T
CREDIT ANALYSIS Selected risk ratios are presented for 2012, 2011 and 2010 for Techtron Company. 2010 2012 Current Ratio Quick Ratio Operating Cash Flow to Average Current Liabili…
CREDIT) Note: You have to return the questionnaire after 0I0 1. A venture capita
CREDIT) Note: You have to return the questionnaire after 0I0 1. A venture capitalist funds typically funds 15% of the proposals he receive. In a stay by Harvard University, 50% of…
CREDIT) Note: You have to return the questionnaire after 0I0 1. A venture capita
CREDIT) Note: You have to return the questionnaire after 0I0 1. A venture capitalist funds typically funds 15% of the proposals he receive. In a stay by Harvard University, 50% of…
CREEK ENTERPRISES, INC. Income Statement Year Ending December 21, 2015 SALES REV
CREEK ENTERPRISES, INC. Income Statement Year Ending December 21, 2015 SALES REVENUE $ 30,000,000 LESS: COGS 21,000,000 GROSS PROFIT $ 9,000,000 LESS: OPERATING EXPENSES SELLING E…
CRIMINAL JUSTICE Are there any types of everyday behaviors that you can think of
CRIMINAL JUSTICE Are there any types of everyday behaviors that you can think of that might be useful or functional in the lower classes, but would not serve that same purpose for…
CRIMINAL JUSTICE MANAGEMENT THINK LIKE AN ADMINISTRATOR Think like an Administra
CRIMINAL JUSTICE MANAGEMENT THINK LIKE AN ADMINISTRATOR Think like an Administrator Every police supervisor can tell a story about an unmotivated patrol officer. Most of these acc…
CRIMINAL JUSTICE MANAGEMENT Think like an administrator: only questions 1, 2, 4,
CRIMINAL JUSTICE MANAGEMENT Think like an administrator: only questions 1, 2, 4, 6, and 8 only ll Sprint 1:47 PM * 83%- online.vitalsource.com Bookshelf Online: Criminal Justice O…
CRIMINAL JUSTICE MANAGEMENT: For think like an administrator questions only 1, 2
CRIMINAL JUSTICE MANAGEMENT: For think like an administrator questions only 1, 2, 3, 9, 10, 11 .11 Sprint 10:26 PM * 50%--1. online.vitalsource.com Criminal Justice Organizations:…
CRISPR 17. Which of the following is an adaptive immune protection of a species
CRISPR 17. Which of the following is an adaptive immune protection of a species of bacterium. A. The virus fails to penetrate the thick cell wall of any of the members of the bact…
CRITERIA 1. Name three historical nursing leaders and explain how their contribu
CRITERIA 1. Name three historical nursing leaders and explain how their contributions impacted community/public health nursing Using definitions and examples from the lecture to e…
CRITICAL BUSINESS THINKING 1. Selecting a Systems Development Methodology Exus I
CRITICAL BUSINESS THINKING 1. Selecting a Systems Development Methodology Exus Incorporated is an intemational billing outsourcing company. Exus currently has revenues of $5 billi…
CRITICAL CARE SERVICE Dr. Sutton, emergency room physician, called in Dr. Elhart
CRITICAL CARE SERVICE Dr. Sutton, emergency room physician, called in Dr. Elhart, the cardiologist on call from the local clinic, to provide critical care services to Linda Paulo.…
CRITICAL LEGAL THINKING CASES S.1 Disparagement Zagat Survey, LLC, publishes the
CRITICAL LEGAL THINKING CASES S.1 Disparagement Zagat Survey, LLC, publishes the entertainment. The Zagat Survey of New York City Restaurants famous Zagat series of dining, travel…
CRITICAL REFLECTION Sustainability in Tourism is an increasingly important issue
CRITICAL REFLECTION Sustainability in Tourism is an increasingly important issue. Tourists visit areas of natural beauty and interest because of their pristine nature, however it …
CRITICAL THINKING 1. What ingredient makes mannitol salt selective? 2. Fill in t
CRITICAL THINKING 1. What ingredient makes mannitol salt selective? 2. Fill in the blanks in this diagram to make a key to these bacteria . Escherichia coli . Alcaligenes faecalis…