help use Markdown!thank

asked 08 Sep '13, 13:21

mfkpie8's gravatar image

mfkpie8
268656974
accept rate: 12%

edited 11 Sep '13, 12:29

Comment Text Removed
1

Some hints as to what does not work for you would be worthwhile - otherwise your suggestion seems "too inconvenient", methinks...

(09 Sep '13, 04:29) Volker Barth

copy or input sql code too bad

(09 Sep '13, 07:20) mfkpie8
Comment Text Removed
Comment Text Removed

Now I'd like to know whether the votes express the voters's opinion that

  • the Markdown behaviour is acceptable or even good or (1)
  • the tone and contents of this suggestion are not appropriate?

(1): I'll bet it's an OR here, not an XOR:)

(10 Sep '13, 01:24) Volker Barth
Replies hidden
2

My opinion, that markdown isn't acceptable and needs to improve, but tone of this suggestion is not appropriate.

(10 Sep '13, 04:26) AlexeyK77

I hope I understand what you are having trouble with.

For inputting SQL code, just copy / paste and then apply the little icon with the 101/010 on it to the code. And then you get something like this...

CREATE VIEW GROUPO.ViewSalesOrders
(ID,LineID,ProductID,Quantity,OrderDate,ShipDate,Region,SalesRepresentativeName)
AS
  SELECT i.ID,i.LineID,i.ProductID,i.Quantity,
         s.OrderDate,i.ShipDate,
         s.Region,e.GivenName||' '||e.Surname
    FROM GROUPO.SalesOrderItems AS i
        JOIN GROUPO.SalesOrders AS s
        JOIN GROUPO.Employees AS e
    WHERE s.ID=i.ID
        AND s.SalesRepresentative=e.EmployeeID;

That's all there is to it.

permanent link

answered 09 Sep '13, 09:15

JBSchueler's gravatar image

JBSchueler
3.3k31564
accept rate: 19%

edited 09 Sep '13, 09:16

thanks ! I think I will can you help me this question the web site was :http://sqlanywhere-forum.sap.com/questions/18168/how-i-can-use-of-recursive-query-results-help-thanks

(09 Sep '13, 10:47) mfkpie8
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×178

question asked: 08 Sep '13, 13:21

question was seen: 1,945 times

last updated: 11 Sep '13, 12:29