The create-table tag has no wiki summary.
2
votes
2answers
42 views
How to create a table using sql in oracle
I'm trying to create a simple table but it's giving me an error says:
Error starting at line 1 in command:
DROP TABLE deleted_employees
Error report:
SQL Error: ORA-00942: table or view ...
3
votes
4answers
25 views
Mysql errno 150 trying to create table with foreign key references
I'm trying to create a table in mysql with a foreign key reference, like this:
In database A:
CREATE TABLE replication (
id varchar(255) NOT NULL PRIMARY KEY,
uid varchar(255) NOT NULL,
value ...
0
votes
1answer
24 views
Foreign key or link between part of column selection
I have 3 tables in the following setup
CREATE TABLE [dbo].[codevariable] (
[id] [int] NULL,
[code] [nchar](10) NULL,
[variable] [int] NULL
) ON [PRIMARY]
CREATE TABLE [dbo].[proxy] (
...
0
votes
0answers
43 views
SQL Server 2008, error: Incorrect syntax near '(' [closed]
I try to create table like this:
CREATE TABLE [dbo].[tcIntAttr](
[surrogate] [int] NOT NULL,
[attr] [int] NOT NULL,
[value] [int] NOT NULL,
PRIMARY KEY CLUSTERED
(
[surrogate] ASC,
...
0
votes
2answers
31 views
create new Table in ruby on rails
So I try to create a new table in rails. Every example I find and try sadly does not work with me...
so that's what I tried till now: (I use Ruby version 1.9 and Rails Version 3.2.13
making a new ...
1
vote
1answer
41 views
How to update all fields from one table to another table in the same database using mySQL?
There are 2 tables in the same database with the same structure. I want to copy all data from one table to the other table using mySQL. The source table may have the same, less or more number of rows ...
1
vote
3answers
56 views
Error with MySQL “CREATE TABLE” query
I know that this has been asked hundreds of times before, but I looked around the internet and couldn't find what could possibly be wrong with my syntax:
mysql_select_db('Projects');
$sql = ...
0
votes
0answers
60 views
Unable to create foreign key constraint
I'm trying to create a table project_items using this code:
CREATE TABLE project_items (
cost FLOAT REFERENCES items (item_cost),
item_id int REFERENCES items (item_id),
project_id int ...
2
votes
2answers
61 views
SQL syntax error on create query
When I run query below on phpMyAdmin and Sequel, I got the following error
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the ...
1
vote
1answer
30 views
SQL Query Error message [duplicate]
I have this SQL Query
CREATE TABLE items(
partnum VARCHAR( 20 ) NOT NULL ,
DESC VARCHAR( 50 ) NOT NULL ,
price INT( 11 ) NOT NULL ,
src VARCHAR( 25 ) NOT NULL ,
PRIMARY KEY ( ...
2
votes
1answer
132 views
SQL Script to create one table from two
is there a way to create procedure that will automatically create one table with all structure (columns,constraints, PKs, FKs, indexes, etc.) based on 2 other tables?
For example:
Table a
id
a1
...
0
votes
2answers
38 views
create an auto increment column which isn't a primary key
I read a lot about why this is a bad idea but here is why I want to do this. I want my table to look like this:
id | article | link | text_cont
1 | //text | www... | parsed ...
-1
votes
1answer
30 views
Mysql database making it flexible [closed]
im fairly new to databases etc....I need to build a database using MySql.....that will be flexible.....Ie: I need a basic databse....but dependant upon the user it needs to be flexible to carter for ...
0
votes
1answer
78 views
SQL Error: ORA-00904: : invalid identifier in creating table
SQL Error: ORA-00904
MY CODE IS:
CREATE TABLE VINTAGEWINE
(
WINE_ID VARCHAR2(5) NOT NULL,
WINE_NAME VARCHAR2(25) NOT NULL
VINTAGE_YEAR VARCHAR2(4) NOT NULL,
EMPLOYEE_ID ...
0
votes
0answers
14 views
SQL Query Display boxes in the order of maximum items in the boxes first
Please see the link to excel file.
https://docs.google.com/spreadsheet/ccc?key=0Au1sfEdgKv6qdFprSjR0WWVfUVcwaVNPTmlxdFY1Z0E#gid=0
Please see the following description.
A table has 5 groups.
Box ...
1
vote
1answer
25 views
Subqueries as the input to the MS Jet CREATE TABLE statement
I am trying to write a CREATE TABLE sql that pulls its columns and data from a subquery (basic Select with an Aggregate MAX function). I've tested the subquery by itself and it works fine, but once i ...
0
votes
1answer
25 views
Primary keys in MySQL
I am trying to create a table from an existing table. Will the primary keys from the existing table transfer over to the new table?
create table B as select column1, column2, column3 from A.
In ...
0
votes
1answer
23 views
Unable to Install Remote database locally using phpAdmin
Some of you are going to wonder which tree I fell out of, but here's my problem.
MacOSX 10.8.3 MAMP installed on Mac fine. Using Safari 6.0.3
PHP 5.4.10. Can't see what version of MySQL, it's the ...
1
vote
1answer
70 views
servicestack.net ormlite with sqlite - prevent automatic primary key on create table
How do you stop ServiceStack.Net OrmLite from automatically making a primary key column?
My model is as follows:
public class Flower2Bee
{
public int FlowerId { get; set; }
public int ...
0
votes
3answers
157 views
How to Add integer column to an String column in MySQl 5.0
I Want to add an Integer Column to a String that's because i need to generate a varchar variable with a numeric part that automatically increments. For example, P000001,P000002...
In order to do that ...
1
vote
1answer
170 views
Firebird: simulating create table as?
I'm searching a way to simulate "create table as select" in Firebird from SP.
We are using this statement frequently in another product, because it is very easy for make lesser, indexable sets, and ...
0
votes
1answer
69 views
Database - Create table with 2 fields pointing to the same table
I need to create a table in a database that includes - the following columns -
table name - transaction
time, source-address, destination-address
I have a table of addresses like this -
table ...
0
votes
3answers
211 views
python - why is peewee including the 'id' column into the mysql select query?
I am trying to learn how to use peewee with mysql.
I have an existing database on a mysql server with an existing table. The table is currently empty (I am just testing right now).
>>> db ...
0
votes
1answer
113 views
Unable to CREATE table #1113 - A table must have at least 1 column
I dont know why I am getting this error, I think this morning i ran this query without errors and it worked.. I am trying to merge two different tables into one table, the tables have the same fields, ...
0
votes
1answer
53 views
IF…BEGIN…END [duplicate]
I have this query and I get Incorrect Syntax Errors near ')' (end of CREATE TABLE) and near 'END'.
Now, this works fine if I remove the BEGIN and END lines but Im not entirely sure what's wrong with ...
0
votes
1answer
87 views
How to store data in android for a long time?
I am trying to develop android application (first time), so I'm using SQLite to store data. But every time I run the application all data are null! I think the problem is when I run the application it ...
1
vote
1answer
81 views
Error using Create Table DDL
My goal is to store 15-minute interval data in a (as of now) stand alone Access database. Databases aren't my area of expertise, but I'm giving it a go. I found a set of metadata data files that ...
0
votes
4answers
106 views
MySQL - CREATE TABLE trows error when similar CREATE TABLE doesn't
I am making an ASP.NET website at the moment. In the Global.asax I have code for initializing some tables if they does not exist. The init blog_post and booked_dates part of the code executes properly ...
1
vote
1answer
159 views
mysql-php, error on create temporary table
I've finally gotten my queries ready to insert into code but now I'm getting an error when running the whole query. I believe it has to do with the drop table function. I originally had them inline ...
1
vote
1answer
162 views
postgres: create table in database
I am trying to create a table in postgres, but it ends up in the wrong database.
Here is what I do: in my sql script initially I create a user and a database, and then a table. Code will explain ...
0
votes
1answer
28 views
Creating new column with rows shifted up in MySql
I have following table T1 :
ID | time
10 | 1000
10 | 1002
10 | 1003
11 | 1002
11 | 1004
Now I want to create a table T2 from T1 in which for each ID, successive time-intervals are shown i.e.
ID ...
1
vote
1answer
150 views
#1064 - You have an error in your SQL syntax '(14) NOT NULL, `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0', `ip` ' at line 3
Im getting this error:
#1064 - You have an error in your SQL syntax; check the manual that corresponds
to your MySQL server version for the right syntax to use near '(14) NOT NULL,
`ID_MEMBER` ...
0
votes
1answer
48 views
Creating a table using hourly readings from a current table
I have a table that is being used to log values every second
datetime float float
25/02/2013 08:18:56 6 147
I need to create a table that has a single row for each hour ...
0
votes
1answer
28 views
Database Creation Misplaced Bracket PK
I'm creating these database tables via SQLFiddle and having an error that I don't see a problem with. It has to do with my Club Primary Key at the bottom telling me that ( is misplaced. What is wrong ...
0
votes
1answer
107 views
How to create a table with php and add an auto increment field
my question is how to create a table from php (only the query) in mSsql and add an autoincrement value. With that it wont be necessary to add the value manually in an insert query.
Here is my ...
-1
votes
1answer
29 views
Free oracle db instance [closed]
I was looking for a DB instance where I can try some sql queries(not MYSql) like this ...
CREATE TABLE membertable
(Member_id NUMBER(5) UNIQUE,
Member_Name VARCHAR2(30),
Member_Address ...
1
vote
2answers
82 views
Error message with FOREIGN KEY REFERENCES
I am trying to create a table that will link to multiple roles.
The table is called UserRoles and has only two columns.
The first column contains a reference to a user
The second column contains a ...
0
votes
2answers
225 views
Error Creating table in SQL table already exists
I have written commands to create table in onCreate() method of DatabaseManager class which extends SQLiteOpenHelper class. When opening database, the onCreate() method is being called for the first ...
1
vote
2answers
23 views
Is it necessary to have mysql column names to begin with letters?
Consider the following CREATE TABLE query :
CRAETE TABLE tablename (100 VARCHAR(10), 200 VARCHAR(10));
In this query, 100 and 200 are column names. Is it possible to create tables like this ?
1
vote
1answer
48 views
MySQL Errno 150 on VARCHAR fields
I'm getting an errno 150 when creating the following tables. The first two work fine, but the third throws this error:
ERROR 1005 (HY000): Can't create table 'test2.exercise_type_exercise_groups' ...
0
votes
2answers
30 views
error in create table from join in Mysql
I have 2 tables A and B which I want to join using a column id and create a third table C from that.
I performed this query:
create table C select * from ( A left join B using (id))T;
But it is ...
1
vote
2answers
203 views
how to declare a field as varchar(max) in firebird
how can I declare this table with Varchar(max) in firebird?
CREATE TABLE MyUser
(
Id INT, -- unique id of user
Signature VARCHAR(max),
Login VARCHAR(50),
UserPassword VARCHAR(100),
...
0
votes
3answers
85 views
SQL While loop out of sorts
Trying to use a while loop to input date data types into a table. My loop break doesn't work and the input values are coming out as NULL.
Help would be greatly appreciated
DECLARE @StartDate ...
1
vote
1answer
153 views
Set default value in column IF condition is met in SQL 2008
First of all, I'm very new with SQL query, so I apologize if I sound ignorant...
I have a database that has a stored job to drop and create a table every hour. The table looks like this, except there ...
1
vote
1answer
47 views
Oracle create table to handle valid_from and valid_to data
I am in the middle of designing a table which include two columns valid_from and valid_to to track historical changes. For example, my table structure is like below:
create table currency_data
(
...
3
votes
0answers
98 views
Fast Left Joins
I recently switched from using a local MySQL instance to using a Xeround MySQL instance for my C# application. As such, I've noticed that queries run much more slowly. I'm currently running a left ...
0
votes
0answers
78 views
grant create table, in specified schema only, to designated role, in postgreSQL
Is it possible in PostgreSQL 9.2 to grant a role the ability to create a table but only within a specified schema? Pseudo: GRANT CREATE TABLE IN SCHEMA SANDBOX TO SANDBOXROLE
1
vote
2answers
397 views
Adding named foreign key constraints in a SQL Create statement
I currently have:
CREATE TABLE galleries_gallery (
id INT NOT NULL PRIMARY KEY IDENTITY,
title NVARCHAR(50) UNIQUE NOT NULL,
description VARCHAR(256),
...
0
votes
4answers
287 views
Syntax error after show create table in mysql
I just want to copy an existing table structure into another database. All queries are executed in phpmyadmin:
I first execute:
SHOW CREATE TABLE keyword_session
Then I execute the output of it in ...
0
votes
0answers
258 views
sql create table with stored procedure with optional parameters
I am writing a report based on parameters, utilizing a sql stored procedure. Problem is there are several 'optional' parameters, where the user can choose a value, or ignore that parameter altogether. ...


