Tagged Questions
1
vote
2answers
46 views
SQL Replace first value of column with second value
I'm new to SQL queries, I'm trying to select the following columns:
pm_name, party, yr_comm and yr_left.
I have data in the first 3 columns, and to create yr_left I've given yr_comm with an ...
0
votes
1answer
32 views
Oracle equivalent of INSERT IGNORE
I found a very similar topic on Oracle Equivalent to MySQL INSERT IGNORE?
However, I could not make work any of the proposed solutions. My case is a little special as my table does contains only 1 ...
1
vote
2answers
60 views
PHP: SQL from two queries - ignore duplicates
So I have this piece of code. It retreives a list of rooms from the table "rom" and is then supposed to check this against the same rooms in "booket". How can I just print out the rooms that are NOT ...
0
votes
3answers
1k views
Do Not Duplicate VALUE if already exist on MySQL
I've been trying to accomplish this, but as other issues I just can't figured it out. I've been reading around for posibles solutions but non of them goes along with my code, or if they do I can't ...
0
votes
0answers
111 views
Ignore incorrectly formatted rows - Data load SQL server import and export wizard
I am trying to load a large comma delimitted file into a SQL database. (I have succesfully done this on a sample file). The issue is that some of the rows have incompatible data in them.
For ...
3
votes
2answers
1k views
MySQL INSERT DELAYED - How to find out when inserts are done
When using MySQL's INSERT DELAYED statements, is there a way to force all Inserts to execute before continuing? Or alternatively to find out whether the Inserts are done yet?
0
votes
1answer
88 views
MySQL insert record
I have this SQL query:
insert into messages
(message, hash, date_add)
values
('message', 'hash', NOW())
ON DUPLICATE KEY IGNORE
hash is unique, what is wrong with query? i got the error:
You ...
1
vote
1answer
956 views
LOAD DATA INFILE (*.csv) - ignore empty cells
I'm about to import a large (500 MB) *.csv file to a MySQL database.
I'm as far as that:
LOAD DATA INFILE '<file>'
REPLACE
INTO TABLE <table-name>
FIELDS
TERMINATED ...
0
votes
1answer
239 views
INSERT IGNORE Inserting 0 rows
When I am attempting to run "INSERT IGNORE ..." in MYSQL to add only one variable to a table of several options, after the first insert, it refuses to work. It says "Inserted rows: 0" and doesn't ...
3
votes
2answers
892 views
How to ignore bad characters in a SQL query
The short story is I have a SQL Server DB with varchar fields instead of datetime (don't ask, it's a long story and can't be fixed). Somehow we've recently been getting weird / random characters ...
0
votes
2answers
1k views
Ignoring a column when condition doesnt match in select query - SQL-Oracle
My requirement is to display a Column in select query when a condition satisfies and not to display the column when condition is not matched.
For eg : In this simple table below
Table: XYZ
Name ...